Skip to content

Commit da8f134

Browse files
committed
comment out diagnostic logging
1 parent 275ec70 commit da8f134

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
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, {

0 commit comments

Comments
 (0)