From cf4dd074fa78f72affa8c701bbb049f9ef547f77 Mon Sep 17 00:00:00 2001 From: David Fifield Date: Mon, 25 May 2015 22:53:05 -0700 Subject: Fix doc comment for log.Debugf. --- common/log/log.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/log') 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...) -- cgit v1.2.3