1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00

Keep code base tidy

This commit is contained in:
Frédéric Guillot 2018-01-29 20:46:01 -08:00
parent 24a2f472ec
commit c8138351c9
5 changed files with 16 additions and 18 deletions

View file

@ -12,24 +12,23 @@ import (
var requestedLevel = InfoLevel
// LogLevel type
// LogLevel type.
type LogLevel uint32
const (
// FatalLevel should be used in fatal situations, the app will exit
// FatalLevel should be used in fatal situations, the app will exit.
FatalLevel LogLevel = iota
// ErrorLevel should be used when someone should really look at the error
// ErrorLevel should be used when someone should really look at the error.
ErrorLevel
// InfoLevel should be used during normal operations
// InfoLevel should be used during normal operations.
InfoLevel
// DebugLevel should be used only during development
// DebugLevel should be used only during development.
DebugLevel
)
// Convert the Level to a string.
func (level LogLevel) String() string {
switch level {
case DebugLevel:
@ -40,9 +39,9 @@ func (level LogLevel) String() string {
return "ERROR"
case FatalLevel:
return "FATAL"
default:
return "UNKNOWN"
}
return "UNKNOWN"
}
// EnableDebug increases logging, more verbose (debug)