Commit 6b02e1e9 authored by astaxie's avatar astaxie

Merge pull request #746 from francoishill/patch-11

To match with logs/log.go (and RFC 5424 specs)
parents 83696d95 1dbbb89a
...@@ -17,12 +17,14 @@ import ( ...@@ -17,12 +17,14 @@ import (
// Log levels to control the logging output. // Log levels to control the logging output.
const ( const (
LevelTrace = iota LevelEmergency = iota
LevelDebug LevelAlert
LevelInfo
LevelWarning
LevelError
LevelCritical LevelCritical
LevelError
LevelWarning
LevelNotice
LevelInformational
LevelDebug
) )
// SetLogLevel sets the global log level used by the simple // SetLogLevel sets the global log level used by the simple
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment