This commit is contained in:
zhangzheng
2026-02-27 18:35:40 +08:00
parent adef8b4cce
commit 1bb1fee5cc
265 changed files with 104076 additions and 92 deletions

27
WebApp/src/log.ts Normal file
View File

@@ -0,0 +1,27 @@
const isDebug = true;
export enum LogLevel {
info,
log,
warn,
error,
}
export function log(level: LogLevel, ...args: any[]): void {
if (isDebug) {
switch (level) {
case LogLevel.log:
console.log(...args);
break;
case LogLevel.info:
console.info(...args);
break;
case LogLevel.warn:
console.warn(...args);
break;
case LogLevel.error:
console.error(...args);
break;
}
}
}