Skip to content

Commit

Permalink
fix(SDK): correct log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
lscheffel-tbx committed Oct 29, 2024
1 parent 5d1a203 commit 70268b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { getLogLevel } from "../config";

export enum LogLevel {
none = 0,
debug = 1,
info = 2,
warn = 3,
error = 4,
error = 1,
warn = 2,
info = 3,
debug = 4,
}

function logLevel() {
Expand Down

0 comments on commit 70268b6

Please sign in to comment.