From 4686d911f49f8b1b553441bdc57d65c22158476d Mon Sep 17 00:00:00 2001 From: fyears <1142836+fyears@users.noreply.github.com> Date: Thu, 7 Apr 2022 23:32:28 +0800 Subject: [PATCH] again remove unused log --- src/configPersist.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configPersist.ts b/src/configPersist.ts index bc1e5ae..c880ec0 100644 --- a/src/configPersist.ts +++ b/src/configPersist.ts @@ -19,8 +19,8 @@ interface MessyConfigType { export const messyConfigToNormal = ( x: MessyConfigType | RemotelySavePluginSettings | null | undefined ): RemotelySavePluginSettings | null | undefined => { - log.debug("loading, original config on disk:"); - log.debug(x); + // log.debug("loading, original config on disk:"); + // log.debug(x); if (x === null || x === undefined) { log.debug("the messy config is null or undefined, skip"); return x as any;