Skip to content

Commit

Permalink
Merge pull request #11036 from Tony133/refactor/update-logger
Browse files Browse the repository at this point in the history
refactor(common): update log level
  • Loading branch information
kamilmysliwiec authored Jun 12, 2023
2 parents a41e6bc + d0d8151 commit 404e2c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/common/services/utils/is-log-level-enabled.util.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { LogLevel } from '../logger.service';

const LOG_LEVEL_VALUES: Record<LogLevel, number> = {
debug: 0,
verbose: 1,
verbose: 0,
debug: 1,
log: 2,
warn: 3,
error: 4,
Expand Down

0 comments on commit 404e2c7

Please sign in to comment.