diff options
-rw-r--r-- | common/log/log.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/log/log.go b/common/log/log.go index f29b33b..1c30b48 100644 --- a/common/log/log.go +++ b/common/log/log.go @@ -140,7 +140,7 @@ func Infof(format string, a ...interface{}) { } } -// Debugf logs the given format string/arguments at the INFO log level. +// Debugf logs the given format string/arguments at the DEBUG log level. func Debugf(format string, a ...interface{}) { if enableLogging && logLevel >= LevelDebug { msg := fmt.Sprintf(format, a...) |