summaryrefslogtreecommitdiff
diff options
-rw-r--r--logger/logger.go2
-rw-r--r--logger/logger_test.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/logger/logger.go b/logger/logger.go
index d55f589dfd..782a47629d 100644
--- a/logger/logger.go
+++ b/logger/logger.go
@@ -27,7 +27,7 @@ import (
)
type Logger interface {
- // Notify is for messages that the user should see
+ // Notice is for messages that the user should see
Notice(msg string)
// Debug is for messages that the user should be able to find if they're debugging something
Debug(msg string)
diff --git a/logger/logger_test.go b/logger/logger_test.go
index 9e820bfe33..4865982215 100644
--- a/logger/logger_test.go
+++ b/logger/logger_test.go
@@ -18,11 +18,11 @@
package logger
import (
+ "bytes"
+ "log"
"testing"
- "bytes"
. "launchpad.net/gocheck"
- "log"
)
// Hook up gocheck into the "go test" runner