add debug comment

This commit is contained in:
tamaina 2021-12-30 02:30:24 +09:00
parent 14e74beba1
commit 69057b5787
1 changed files with 2 additions and 0 deletions

View File

@ -125,6 +125,7 @@ export class Storage<T extends StateDef> {
this.reactiveState[key].value = rawValue;
return this.addIdbSetJob(async () => {
if (_DEV_) console.log(`set ${key} start`);
switch (this.def[key].where) {
case 'device': {
const deviceState = await get(this.deviceStateKeyName) || {};
@ -152,6 +153,7 @@ export class Storage<T extends StateDef> {
break;
}
}
if (_DEV_) console.log(`set ${key} complete`);
});
}