fix logging output in prettyprint

This commit is contained in:
Raghu Rajagopalan 2016-04-26 22:52:27 +05:30
parent 6ff536fca7
commit a5a3bc8b7c
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ function prettyPrintCommitHistory(commitArr) {
_.each(branches, function(v,k){
if (v == commit.id) label.push(k);
});
log.debug(label);
log.debug(label.join(' '));
if (Array.isArray(commit.parent)) {
//console.log("here", commit.parent);
var newCommit = commits[commit.parent[0]];