Skip to content

Commit

Permalink
Add debug to processing job
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Radchenko authored Aug 3, 2016
1 parent 95ff44a commit bc507cd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,9 @@ Runner.prototype = {
}
});
});

if (anyPluginFailed) return;

async.parallel(tasks, function (err, results) {
if (err) return done(err);
done(null, {
Expand All @@ -292,6 +294,8 @@ Runner.prototype = {
},

processJob: function (job, config, next) {
debug(`Processing job: ${job._id}`);

var cache = this.getCache(job.project);
var now = new Date();
var self = this;
Expand Down

0 comments on commit bc507cd

Please sign in to comment.