log.go
changeset 116 5c6d6d51d3ba
parent 102 872e936f9f3f
--- 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{}) {