From a8acb02e0aa7aad3e278548989956f139b1ecc6e Mon Sep 17 00:00:00 2001 From: wanxp <977741432@qq.com> Date: Mon, 27 Jun 2022 00:49:17 +0800 Subject: [PATCH] fix log info --- utils/Logutil.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } }