diff options
author | Jakob Unterwurzacher | 2015-11-14 17:16:17 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2015-11-14 17:16:17 +0100 |
commit | 61aacb5c1bd3368366484b9e03cf90ccf85f1125 (patch) | |
tree | d62d9fed9fb500a6051e2b4919a094fd1556de24 /cryptfs/log.go | |
parent | f9c21e91aab4799425b25f5fb876c9d95865d9dc (diff) |
Run go fmt and go vet
Diffstat (limited to 'cryptfs/log.go')
-rw-r--r-- | cryptfs/log.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cryptfs/log.go b/cryptfs/log.go index 6173e63..64dc80e 100644 --- a/cryptfs/log.go +++ b/cryptfs/log.go @@ -47,7 +47,9 @@ func (l *logChannel) Md5sum(buf []byte) string { // Debug messages var Debug = logChannel{false} + // Informational message e.g. startup information var Info = logChannel{true} + // A warning, meaning nothing serious by itself but might indicate problems var Warn = logChannel{true} |