1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

user-store: more debug logging

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2020-07-05 20:54:29 +03:00
parent 387bc07dbc
commit 9d42b2c025

View File

@ -67,7 +67,9 @@ export class UserStore extends Singleton {
cwd: (app || remote.app).getPath("userData"), cwd: (app || remote.app).getPath("userData"),
watch: true, // enable onDidChange()-callback watch: true, // enable onDidChange()-callback
}); });
this.fromStore(this.storeConfig.store); const data = this.storeConfig.store;
logger.debug(`[STORE]: ${this.name} loaded with`, data);
this.fromStore(data);
} }
protected bindEvents() { protected bindEvents() {