mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-10-12 18:49:37 +02:00
fix logging output in prettyprint
This commit is contained in:
@@ -147,7 +147,7 @@ function prettyPrintCommitHistory(commitArr) {
|
|||||||
_.each(branches, function(v,k){
|
_.each(branches, function(v,k){
|
||||||
if (v == commit.id) label.push(k);
|
if (v == commit.id) label.push(k);
|
||||||
});
|
});
|
||||||
log.debug(label);
|
log.debug(label.join(' '));
|
||||||
if (Array.isArray(commit.parent)) {
|
if (Array.isArray(commit.parent)) {
|
||||||
//console.log("here", commit.parent);
|
//console.log("here", commit.parent);
|
||||||
var newCommit = commits[commit.parent[0]];
|
var newCommit = commits[commit.parent[0]];
|
||||||
|
Reference in New Issue
Block a user