diff -r 7c45fc3f524a -r 5c6d6d51d3ba log.go --- a/log.go Fri Dec 28 17:56:13 2012 -0700 +++ b/log.go Tue Mar 26 10:54:44 2013 -0600 @@ -10,8 +10,8 @@ // If any of these are non-nil when NewClient() is called, // they will be used to log messages of the indicated // severity. - Warn Logger = &noLog{} - Info Logger = &noLog{} + Warn Logger = &noLog{} + Info Logger = &noLog{} Debug Logger = &noLog{} ) @@ -27,6 +27,7 @@ flags int prefix string } + var _ Logger = &noLog{} func (l *noLog) Log(v ...interface{}) {