More log level finetuning

pull/67/head
sachaaaaa 6 years ago
parent 416a046c46
commit 8f22babfcc

@ -242,7 +242,7 @@ function _makeJob(fnName) {
const id = _jobCounter;
if (_DEBUG) {
window.log.info(`SQL channel job ${id} (${fnName}) started`);
window.log.debug(`SQL channel job ${id} (${fnName}) started`);
}
_jobs[id] = {
fnName,
@ -264,7 +264,7 @@ function _updateJob(id, data) {
const end = Date.now();
const delta = end - start;
if (delta > 10) {
window.log.info(
window.log.debug(
`SQL channel job ${id} (${fnName}) succeeded in ${end - start}ms`
);
}
@ -273,7 +273,7 @@ function _updateJob(id, data) {
reject: error => {
_removeJob(id);
const end = Date.now();
window.log.info(
window.log.warn(
`SQL channel job ${id} (${fnName}) failed in ${end - start}ms`
);
return reject(error);

@ -211,7 +211,7 @@
}
}
window.log.error('Failed to fetch contact prekey:', pubKey);
window.log.warn('Failed to fetch contact prekey:', pubKey);
return undefined;
},
async loadContactPreKeys(filters) {
@ -226,7 +226,7 @@
}));
}
window.log.error(
window.log.warn(
'Failed to fetch signed prekey with filters',
filters
);
@ -308,7 +308,7 @@
}));
}
window.log.error(
window.log.warn(
'Failed to fetch contact signed prekey with filters',
filters
);
@ -327,7 +327,7 @@
confirmed: preKey.confirmed,
};
}
window.log.error('Failed to fetch contact signed prekey:', pubKey);
window.log.warn('Failed to fetch contact signed prekey:', pubKey);
return undefined;
},
async loadSignedPreKeys() {

Loading…
Cancel
Save