diff --git a/utils/Logutil.ts b/utils/Logutil.ts index 38e1ec9..c901065 100644 --- a/utils/Logutil.ts +++ b/utils/Logutil.ts @@ -15,19 +15,19 @@ class Logger { } public info(e:any):any { - console.log(`Douban Plugin info:` + `${typeof e == 'string' ? e : JSON.stringify(e)}`); + // console.log(`Douban Plugin info:` + `${typeof e == 'string' ? e : JSON.stringify(e)}`); return e; } public trace(e:any):any { // return e; - console.log(`Douban Plugin trace:` + `${typeof e == 'string' ? e : JSON.stringify(e)}`); + // console.log(`Douban Plugin trace:` + `${typeof e == 'string' ? e : JSON.stringify(e)}`); return e; } public traceN(notion:string, e:any):any { // return e; - console.log(`${notion} ${typeof e == 'string' ? e : JSON.stringify(e)}`); + // console.log(`${notion} ${typeof e == 'string' ? e : JSON.stringify(e)}`); return e; } }