From f1024941eda4162b0ef5f9a4cd3b13c6645c7974 Mon Sep 17 00:00:00 2001 From: xion Date: Thu, 3 Apr 2025 01:08:20 +0800 Subject: [PATCH] fix:clear console --- src/login-node-cache.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/login-node-cache.ts b/src/login-node-cache.ts index 6554bda..a0e2b26 100644 --- a/src/login-node-cache.ts +++ b/src/login-node-cache.ts @@ -119,7 +119,8 @@ export class LoginNodeCache implements Cache { const jsonData = JSON.parse(data); return jsonData; } catch (error) { - console.log('loadCache error', error); + // console.log('loadCache error', error); + console.log('create new cache file:', filePath); const defaultData = { loginUsers: [] }; writeConfigFile(filePath, defaultData); return defaultData;