diff --git a/packages/common/src/createBenchmark.ts b/packages/common/src/createBenchmark.ts index df31203405..2da3f77295 100644 --- a/packages/common/src/createBenchmark.ts +++ b/packages/common/src/createBenchmark.ts @@ -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);