Fix doc comment for log.Debugf.

This commit is contained in:
David Fifield 2015-05-25 22:53:05 -07:00 committed by Yawning Angel
parent 37a709d8b4
commit cf4dd074fa

View File

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