Additional logging for sql commands in debug mode
This commit is contained in:
parent
7983300f4a
commit
516a729a45
1 changed files with 3 additions and 0 deletions
|
@ -109,6 +109,9 @@ function _makeJob(fnName) {
|
|||
_jobCounter += 1;
|
||||
const id = _jobCounter;
|
||||
|
||||
if (_DEBUG) {
|
||||
window.log.info(`SQL channel job ${id} (${fnName}) started`);
|
||||
}
|
||||
_jobs[id] = {
|
||||
fnName,
|
||||
start: Date.now(),
|
||||
|
|
Loading…
Reference in a new issue