Skip to content

Commit

Permalink
Merge branch 'augchan42-fix/logging-issues'
Browse files Browse the repository at this point in the history
  • Loading branch information
shakkernerd committed Nov 30, 2024
2 parents 508ef52 + 6b9e460 commit 0dc57b8
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 5 deletions.
9 changes: 5 additions & 4 deletions packages/core/src/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,11 @@ class ElizaLogger {

debug(...strings) {
if (!this.verbose) {
console.log(
"[ElizaLogger] Debug message suppressed (verbose=false):",
...strings
);
// for diagnosing verbose logging issues
// console.log(
// "[ElizaLogger] Debug message suppressed (verbose=false):",
// ...strings
// );
return;
}
this.#logWithStyle(strings, {
Expand Down
40 changes: 39 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0dc57b8

Please sign in to comment.