Skip to content

Commit

Permalink
Update logger.go
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Dec 20, 2023
1 parent 256a50d commit 0d7a3a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
)

const (
LogLevelDebug = -2
LogLevelInfo = -1
LogLevelWarn = 0
LogLevelError = 1
LogLevelNone = 2
LogLevelDebug LogLevel = -2
LogLevelInfo LogLevel = -1
LogLevelWarn LogLevel = 0
LogLevelError LogLevel = 1
LogLevelNone LogLevel = 2
)

type LogLevel int
Expand Down

0 comments on commit 0d7a3a2

Please sign in to comment.