summaryrefslogtreecommitdiff
path: root/logger
diff options
authorJohn R. Lenton <jlenton@gmail.com>2015-05-08 18:06:08 +0100
committerJohn R. Lenton <jlenton@gmail.com>2015-05-08 18:06:08 +0100
commit394dec4a73793d35f8c8ead17a4e96609ddb0878 (patch)
treec90296b3c36fb3b6621d179928e68f28123a76bf /logger
parentbf1e87d9bde1a0677394f08a71cea56d4fa2f6f8 (diff)
clean up imports, typos
Diffstat (limited to 'logger')
-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