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; };