diff options
author | David Fifield <david@bamsoftware.com> | 2015-05-25 22:53:05 -0700 |
---|---|---|
committer | Yawning Angel <yawning@schwanenlied.me> | 2015-05-26 06:19:55 +0000 |
commit | cf4dd074fa78f72affa8c701bbb049f9ef547f77 (patch) | |
tree | 361eef2f1e32e760707d2693d33813b6f43d0881 | |
parent | 37a709d8b4fec837c0c88c495e7ea926953d974f (diff) |
Fix doc comment for log.Debugf.
-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...) |