It provides a leveled structured human-readable logger with a small API.
Unlike standard log, the gollogging library provides a leveled logger with a structured output.
const (
// DebugLevel is the debug level. DebugLevel Level = -4
// InfoLevel is the info level. InfoLevel Level = 0
// WarnLevel is the warn level. WarnLevel Level = 4
// ErrorLevel is the error level. ErrorLevel Level = 8
// FatalLevel is the fatal level. FatalLevel Level = 12
)