aboutsummaryrefslogtreecommitdiff
path: root/internal/tlog/log.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2016-10-04 23:30:05 +0200
committerJakob Unterwurzacher2016-10-04 23:30:05 +0200
commita4956fa6bfde27c21f70e8577ebb586ccc9a3691 (patch)
treebf4cf674dee6bcb3287755cc4d15807e5c518d4e /internal/tlog/log.go
parentb764917cd5c1b1d61b8ce08e7af0b29793fbbb80 (diff)
A few more lint fixes
Diffstat (limited to 'internal/tlog/log.go')
-rw-r--r--internal/tlog/log.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/tlog/log.go b/internal/tlog/log.go
index 8db3de2..4ab5d79 100644
--- a/internal/tlog/log.go
+++ b/internal/tlog/log.go
@@ -74,15 +74,16 @@ func (l *toggledLogger) Println(v ...interface{}) {
}
}
-// Debug messages
+// Debug logs debug messages
// Can be enabled by passing "-d"
var Debug *toggledLogger
-// Informational message
+// Info logs informational message
// Can be disabled by passing "-q"
var Info *toggledLogger
-// A warning, meaning nothing serious by itself but might indicate problems.
+// Warn logs warnings,
+// meaning nothing serious by itself but might indicate problems.
// Passing "-wpanic" will make this function panic after printing the message.
var Warn *toggledLogger