Skip to content

Commit

Permalink
fix(log): print dumps correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
yoannmoinet committed Feb 23, 2016
1 parent 7f596f8 commit 9c4f5cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bots/log.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,9 @@ var config = function (casper, pid, level) {
});
casper.echo(out);
dumps.forEach(function (dump) {
out += color(' - dump : ', styles[type]);
casper.echo(color(' - dump : ', styles[type]));
utils.dump(dump);
out += '\n';
casper.echo('\n');
});
};
};
Expand Down

0 comments on commit 9c4f5cc

Please sign in to comment.