Skip to content

Commit

Permalink
comment out diagnostic logging
Browse files Browse the repository at this point in the history
  • Loading branch information
augchan42 committed Nov 30, 2024
1 parent 275ec70 commit da8f134
Showing 1 changed file with 5 additions and 4 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

0 comments on commit da8f134

Please sign in to comment.