Skip to content

Commit

Permalink
fix: OFF means no logs
Browse files Browse the repository at this point in the history
  • Loading branch information
roderik authored and jmcdo29 committed Oct 26, 2020
1 parent 37912d8 commit bde8068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/logger/src/enums/log-level.enum.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
export enum LogLevel {
OFF,
ALL,
VERBOSE,
DEBUG,
LOG,
WARN,
ERROR,
FATAL,
OFF,
INFO = LogLevel.LOG,
FINE = LogLevel.VERBOSE,
SILLY = LogLevel.ALL,
Expand Down

0 comments on commit bde8068

Please sign in to comment.