Fix doc comment for log.Debugf.

merge-requests/3/head
David Fifield 9 years ago committed by Yawning Angel
parent 37a709d8b4
commit cf4dd074fa

@ -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...)

Loading…
Cancel
Save