Skip to content
Snippets Groups Projects
Commit cf4dd074 authored by David Fifield's avatar David Fifield Committed by Yawning Angel
Browse files

Fix doc comment for log.Debugf.

parent 37a709d8
No related branches found
No related tags found
No related merge requests found
......@@ -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...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment