diff options
author | Sheogorath | 2019-06-08 20:51:24 +0200 |
---|---|---|
committer | Sheogorath | 2019-06-08 21:27:29 +0200 |
commit | b5fc6db75db61d9765da38e0f085dd737380f9f4 (patch) | |
tree | d221b850be9f961f357b7592636cd35868675383 /lib/models | |
parent | 6462968e84e8d92292dd23764a9e558d7800147d (diff) |
Rework debug logging
We have various places with overly simple if statements that could be
handled by our logging library. Also a lot of those logs are not marked
as debug logs but as info logs, which can cause confusion during
debugging.
This patch removed unneeded if clauses around debug logging statements,
reworks debug log messages towards ECMA templates and add some new
logging statements which might be helpful in order to debug things like
image uploads.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to '')
-rw-r--r-- | lib/models/revision.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/models/revision.js b/lib/models/revision.js index 4ee080da..69a2bf96 100644 --- a/lib/models/revision.js +++ b/lib/models/revision.js @@ -8,7 +8,6 @@ var shortId = require('shortid') var path = require('path') // core -var config = require('../config') var logger = require('../logger') var dmpWorker = createDmpWorker() @@ -18,7 +17,7 @@ function createDmpWorker () { var worker = childProcess.fork(path.resolve(__dirname, '../workers/dmpWorker.js'), { stdio: 'ignore' }) - if (config.debug) logger.info('dmp worker process started') + logger.debug('dmp worker process started') worker.on('message', function (data) { if (!data || !data.msg || !data.cacheKey) { return logger.error('dmp worker error: not enough data on message') @@ -36,7 +35,7 @@ function createDmpWorker () { }) worker.on('close', function (code) { dmpWorker = null - if (config.debug) logger.info('dmp worker process exited with code ' + code) + logger.debug(`dmp worker process exited with code ${code}`) }) return worker } |