Browse Source

Fix: print stacktrace

refactor
Harish.K 10 years ago
parent
commit
f0fb70917a
  1. 4
      index.js

4
index.js

@ -74,6 +74,10 @@ Task.prototype.print = function(){
padding( '(' + timeTaken + 'ms) ' , 11) + padding( '(' + timeTaken + 'ms) ' , 11) +
this.name this.name
); );
if( this.err ){
console.log( this.err.stack );
}
}; };

Loading…
Cancel
Save