Compare commits

...

1 Commits

Author SHA1 Message Date
f1024941ed fix:clear console 2025-04-03 01:08:20 +08:00

View File

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