mirror of
https://github.com/1Password/onepassword-operator.git
synced 2025-10-22 07:28:06 +00:00
12 lines
248 B
Go
12 lines
248 B
Go
package logs
|
|
|
|
// A Level is a logging priority. Lower levels are more important.
|
|
// All levels have been multipled by -1 to ensure compatibilty
|
|
// between zapcore and logr
|
|
const (
|
|
ErrorLevel = -2
|
|
WarnLevel = -1
|
|
InfoLevel = 0
|
|
DebugLevel = 1
|
|
)
|