Improve comment for Loglevel constants

This commit is contained in:
Jan Philipp Timme 2019-05-12 19:25:13 +02:00
parent 4ac79cc44f
commit 64f6b7ad0b
1 changed files with 4 additions and 8 deletions

View File

@ -8,16 +8,12 @@ import (
// Loglevel is used to set the current loglevel of Logger.
type Loglevel int
// These are available loglevels for Logger.
const (
// NONE is a loglevel for Logger.
NONE Loglevel = 0
// ERROR is a loglevel for Logger.
ERROR Loglevel = 1
// WARN is a loglevel for Logger.
WARN Loglevel = 2
// INFO is a loglevel for Logger.
INFO Loglevel = 3
// DEBUG is a loglevel for Logger.
DEBUG Loglevel = 4
)