Commit 41d80ba1 authored by Taylor Gerring's avatar Taylor Gerring

Add JsonLevel log level

parent bdf99e09
...@@ -30,7 +30,7 @@ type message struct { ...@@ -30,7 +30,7 @@ type message struct {
msg string msg string
} }
type LogLevel uint8 type LogLevel uint32
const ( const (
// Standard log levels // Standard log levels
...@@ -40,6 +40,7 @@ const ( ...@@ -40,6 +40,7 @@ const (
InfoLevel InfoLevel
DebugLevel DebugLevel
DebugDetailLevel DebugDetailLevel
JsonLevel = 1000
) )
// A Logger prints messages prefixed by a given tag. It provides named // A Logger prints messages prefixed by a given tag. It provides named
......
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