We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bd9499 commit 0eca5e1Copy full SHA for 0eca5e1
utils/logging/console.ts
@@ -71,7 +71,8 @@ export const createConsole = (
71
}
72
return console.info(getColoredLog(headMessage, args));
73
case 'json':
74
- return console.info(bigIntStringify(args));
+ args.forEach((arg) => console.info(bigIntStringify(arg)));
75
+ return;
76
default:
77
if (program.opts().json) {
78
return console.info(bigIntStringify({ result: args }));
0 commit comments