diff options
| author | John R. Lenton <jlenton@gmail.com> | 2015-05-08 18:06:08 +0100 |
|---|---|---|
| committer | John R. Lenton <jlenton@gmail.com> | 2015-05-08 18:06:08 +0100 |
| commit | 394dec4a73793d35f8c8ead17a4e96609ddb0878 (patch) | |
| tree | c90296b3c36fb3b6621d179928e68f28123a76bf /logger | |
| parent | bf1e87d9bde1a0677394f08a71cea56d4fa2f6f8 (diff) | |
clean up imports, typos
Diffstat (limited to 'logger')
| -rw-r--r-- | logger/logger.go | 2 | ||||
| -rw-r--r-- | logger/logger_test.go | 4 |
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 |
