From 6f339583c11cb9822644482ebabd15937192d1eb Mon Sep 17 00:00:00 2001 From: fyears <1142836+fyears@users.noreply.github.com> Date: Wed, 6 Apr 2022 01:26:08 +0800 Subject: [PATCH] remove not useful log --- src/configPersist.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/configPersist.ts b/src/configPersist.ts index 921b74b..bc1e5ae 100644 --- a/src/configPersist.ts +++ b/src/configPersist.ts @@ -35,12 +35,12 @@ export const messyConfigToNormal = ( }) as Buffer ).toString("utf-8") ); - log.debug("loading, parsed config is:"); - log.debug(y); + // log.debug("loading, parsed config is:"); + // log.debug(y); return y; } else { // return as is - log.debug("loading, parsed config is the same"); + // log.debug("loading, parsed config is the same"); return x; } }; @@ -63,7 +63,7 @@ export const normalConfigToMessy = ( }) ), }; - log.debug("encoding, encoded config is:"); - log.debug(y); + // log.debug("encoding, encoded config is:"); + // log.debug(y); return y; };