Skip to content

Commit

Permalink
fix, display issue (#1160)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola authored Jun 30, 2023
1 parent 579bd3f commit f04422d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions javascript/packages/orchestrator/src/chainSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -584,13 +584,13 @@ function findAndReplaceConfig(obj1: any, obj2: any) {
)} [ key : ${key} ]`,
],
]);
debug(`[ ${key}: ${obj2[key]} ]`);
debug(`[ ${key}: ${JSON.stringify(obj2[key])} ]`);
}
} else {
console.error(
`\n\t\t ${decorators.reverse(
decorators.red("⚠ Bad Genesis Configuration"),
)} [ ${key}: ${obj1[key]} ]`,
)} [ ${key}: ${JSON.stringify(obj1[key])} ]`,
);
}
});
Expand Down

0 comments on commit f04422d

Please sign in to comment.