Skip to content

Commit

Permalink
change benchmark level to info
Browse files Browse the repository at this point in the history
  • Loading branch information
alvrs committed Dec 9, 2023
1 parent 3dbb4cd commit e66ea93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/src/createBenchmark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import createDebug from "debug";
const parentDebug = createDebug("mud:benchmark");

// Pipe debug output to stdout instead of stderr
parentDebug.log = console.debug.bind(console);
parentDebug.log = console.info.bind(console);

export function createBenchmark(namespace: string): (stepName: string) => void {
const debug = parentDebug.extend(namespace);
Expand Down

0 comments on commit e66ea93

Please sign in to comment.