Files
onepassword-operator/pkg/logs/log_levels.go
2023-08-03 14:31:39 -03:00

14 lines
261 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
type Level int
const (
ErrorLevel Level = iota - 2
WarnLevel
InfoLevel
DebugLevel
)