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 +}