Skip to content

Commit

Permalink
revert accidental logger commented
Browse files Browse the repository at this point in the history
  • Loading branch information
sviderock committed Dec 19, 2024
1 parent 39664fe commit 1fa2209
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/utils/Logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,21 @@ class Logger {
if (this.level < LoggerLevel.Debug) {
return
}
// console.debug(tag, ...messages)
console.debug(tag, ...messages)
}

info = (tag: string, ...messages: any[]) => {
if (this.level < LoggerLevel.Info) {
return
}
// console.info(tag, ...messages)
console.info(tag, ...messages)
}

warn = (tag: string, ...messages: any[]) => {
if (this.level < LoggerLevel.Warn) {
return
}
// console.warn(tag, ...messages)
console.warn(tag, ...messages)
}

error = (
Expand Down

0 comments on commit 1fa2209

Please sign in to comment.