Skip to content

Commit

Permalink
Merge pull request #735 from chaintng/correcting-log-level
Browse files Browse the repository at this point in the history
correcting log level
  • Loading branch information
chhoumann authored Nov 3, 2024
2 parents bf02b73 + 737b71c commit 04b2e04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logger/logManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LogManager {
}

logWarning(message: string) {
LogManager.loggers.forEach((logger) => logger.logError(message));
LogManager.loggers.forEach((logger) => logger.logWarning(message));
}

logMessage(message: string) {
Expand Down

0 comments on commit 04b2e04

Please sign in to comment.