diff options
author | Sheogorath | 2019-06-09 13:47:32 +0200 |
---|---|---|
committer | GitHub | 2019-06-09 13:47:32 +0200 |
commit | 02929cd4bf6da3596dde33ebfd8369e0914929a5 (patch) | |
tree | d221b850be9f961f357b7592636cd35868675383 /lib/workers | |
parent | 6462968e84e8d92292dd23764a9e558d7800147d (diff) | |
parent | b5fc6db75db61d9765da38e0f085dd737380f9f4 (diff) |
Merge pull request #103 from SISheogorath/feature/improve-logging
Rework debug logging
Diffstat (limited to 'lib/workers')
-rw-r--r-- | lib/workers/dmpWorker.js | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/lib/workers/dmpWorker.js b/lib/workers/dmpWorker.js index 60db0a12..ca68b4ab 100644 --- a/lib/workers/dmpWorker.js +++ b/lib/workers/dmpWorker.js @@ -4,7 +4,6 @@ var DiffMatchPatch = require('diff-match-patch') var dmp = new DiffMatchPatch() // core -var config = require('../config') var logger = require('../logger') process.on('message', function (data) { @@ -61,10 +60,8 @@ function createPatch (lastDoc, currDoc) { var patch = dmp.patch_make(lastDoc, diff) patch = dmp.patch_toText(patch) var msEnd = (new Date()).getTime() - if (config.debug) { - logger.info(patch) - logger.info((msEnd - msStart) + 'ms') - } + logger.debug(patch) + logger.debug((msEnd - msStart) + 'ms') return patch } @@ -123,9 +120,7 @@ function getRevision (revisions, count) { authorship: authorship } var msEnd = (new Date()).getTime() - if (config.debug) { - logger.info((msEnd - msStart) + 'ms') - } + logger.debug((msEnd - msStart) + 'ms') return data } |