mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-19 04:00:16 +09:00
14 lines
275 B
TypeScript
14 lines
275 B
TypeScript
export function createLogger(prefix = "") {
|
|
return {
|
|
log(...args: any[]) {
|
|
console.log(prefix, ...args);
|
|
},
|
|
error(...args: any[]) {
|
|
console.error(prefix, ...args);
|
|
},
|
|
warn(...args: any[]) {
|
|
console.warn(prefix, ...args);
|
|
},
|
|
};
|
|
}
|