Fix
This commit is contained in:
parent
e1adc05cae
commit
274cbfa482
|
@ -1,5 +1,5 @@
|
||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
import log from 'electron-log'; //tslint:disable-line:match-default-export-name
|
// import log from 'electron-log'; //tslint:disable-line:match-default-export-name
|
||||||
|
|
||||||
import { IndexedStore } from '../indexed';
|
import { IndexedStore } from '../indexed';
|
||||||
import { IndexedRequest, ProfileStoreCommand } from './types';
|
import { IndexedRequest, ProfileStoreCommand } from './types';
|
||||||
|
@ -18,12 +18,11 @@ const reply = (req: IndexedRequest, result?: any, err?: string | Error): void =>
|
||||||
};
|
};
|
||||||
|
|
||||||
if (err) {
|
if (err) {
|
||||||
console.error(err);
|
console.error('store.worker.endpoint.error', err);
|
||||||
console.error('store.worker.endpoint.error', { err });
|
|
||||||
res.msg = _.isString(err) ? err : err.message;
|
res.msg = _.isString(err) ? err : err.message;
|
||||||
}
|
}
|
||||||
|
|
||||||
log.debug('store.worker.endpoint.reply', { req, res });
|
// log.debug('store.worker.endpoint.reply', { req, res });
|
||||||
|
|
||||||
postMessage(res);
|
postMessage(res);
|
||||||
};
|
};
|
||||||
|
@ -46,7 +45,7 @@ const generateMessageProcessor = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return async(e: Event) => {
|
return async(e: Event) => {
|
||||||
log.silly('store.worker.endpoint.msg', { e });
|
// log.silly('store.worker.endpoint.msg', { e });
|
||||||
|
|
||||||
const req = (e as any).data as IndexedRequest;
|
const req = (e as any).data as IndexedRequest;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue