From 64d2b8cb85d963d313b0ece95e84dc01953e5108 Mon Sep 17 00:00:00 2001 From: "hemanth.hm" Date: Sun, 16 Oct 2016 15:46:42 +0530 Subject: [PATCH] Using log for now, fixes #40 `log` or `debug` must not matter much in this case. --- src/common/job.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/job.js b/src/common/job.js index 3fd2c40..d867468 100644 --- a/src/common/job.js +++ b/src/common/job.js @@ -52,7 +52,7 @@ module.exports = class TesseractJob { let runFinallyCbs = false; if(packet.status === 'resolve'){ - if(this._resolve.length === 0) console.debug(data); + if(this._resolve.length === 0) console.log(data); this._resolve.forEach(fn => { var ret = fn(data); if(ret && typeof ret.then == 'function'){ @@ -78,4 +78,4 @@ module.exports = class TesseractJob { this._finally.forEach(fn => fn(data)); } } -} \ No newline at end of file +}