mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-06 22:19:25 +08:00
4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
export const error = (message: Error | string, ...args: any[]) => {
|
|
console.error(message, ...args);
|
|
};
|