log_level.go 357 B

12345678
  1. package data
  2. // LogLevels consists of log levels for several types
  3. var LogLevels = map[string][]string{
  4. "general": {"error", "warning", "info", "fatal", "trace", "debug"},
  5. "syslog": {"emerg", "alert", "crit", "err", "warning", "notice", "info", "debug"},
  6. "apache": {"emerg", "alert", "crit", "error", "warn", "notice", "info", "debug", "trace1-8"},
  7. }