niki/vendor/github.com/brianvoe/gofakeit/v6/data/log_level.go

9 lines
357 B
Go
Raw Permalink Normal View History

2024-04-26 19:30:35 +00:00
package data
// LogLevels consists of log levels for several types
var LogLevels = map[string][]string{
"general": {"error", "warning", "info", "fatal", "trace", "debug"},
"syslog": {"emerg", "alert", "crit", "err", "warning", "notice", "info", "debug"},
"apache": {"emerg", "alert", "crit", "error", "warn", "notice", "info", "debug", "trace1-8"},
}