Skip to content

Commit 0dc57b8

Browse files
committed
Merge branch 'augchan42-fix/logging-issues'
2 parents 508ef52 + 6b9e460 commit 0dc57b8

File tree

2 files changed

+44
-5
lines changed

2 files changed

+44
-5
lines changed

packages/core/src/logger.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,11 @@ class ElizaLogger {
219219

220220
debug(...strings) {
221221
if (!this.verbose) {
222-
console.log(
223-
"[ElizaLogger] Debug message suppressed (verbose=false):",
224-
...strings
225-
);
222+
// for diagnosing verbose logging issues
223+
// console.log(
224+
// "[ElizaLogger] Debug message suppressed (verbose=false):",
225+
// ...strings
226+
// );
226227
return;
227228
}
228229
this.#logWithStyle(strings, {

pnpm-lock.yaml

+39-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)