Skip to content

Commit

Permalink
fix log levels order
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardobl committed May 13, 2024
1 parent b81f777 commit 8088183
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/Logger.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import goodbye from "graceful-goodbye";
enum LogLevel {
error = "error",
warn = "warn",
info = "info",
debug = "debug",
fine = "fine",
finer = "finer",
finest = "finest",
finer = "finer",
fine = "fine",
debug = "debug",
info = "info",
warn = "warn",
error = "error",
}


type OpenObserveOptions = {
stream: string;
org: string;
Expand Down

0 comments on commit 8088183

Please sign in to comment.