Skip to content

Commit

Permalink
nicer cli output
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Oct 11, 2023
1 parent 8304d24 commit c763f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ export function getProgram(log: LogFn, debugLogger: DebugLogger): Command {
.join(', ');
if (!follow) log(`No logs found for filter: {${filterOptions}}`);
} else {
if (!follow) log('Logs found: \n');
if (!follow && !filter.afterLog) log('Logs found: \n');
logs.forEach(unencryptedLog => log(unencryptedLog.toHumanReadable()));
// Disable `fromBlock` and continue using the `afterLog` filter.
filter.fromBlock = undefined;
Expand Down

0 comments on commit c763f71

Please sign in to comment.