diff options
author | Jakob Unterwurzacher | 2016-06-26 23:30:22 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-06-26 23:30:22 +0200 |
commit | 547ddf42648e55b3235343ac7d4eae27931362f8 (patch) | |
tree | dab115a13447594f267f6cbb56aace0d79df84ad /internal/tlog/log_go1.4.go | |
parent | a8a0d2d92c2ea98040e144c1a0d1fee4dd4b9d1d (diff) |
tlog: switch default logger to syslog
...unless "-nosyslog" is passed.
All gocryptfs messages already go to syslog, but the messages
that the go-fuse lib emits were still printed to stdout.
Fixes issue #13 ( https://github.com/rfjakob/gocryptfs/issues/13 )
Diffstat (limited to 'internal/tlog/log_go1.4.go')
-rw-r--r-- | internal/tlog/log_go1.4.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/internal/tlog/log_go1.4.go b/internal/tlog/log_go1.4.go index fae0e9b..98d69db 100644 --- a/internal/tlog/log_go1.4.go +++ b/internal/tlog/log_go1.4.go @@ -8,5 +8,9 @@ import ( ) func (l *toggledLogger) SwitchToSyslog(p syslog.Priority) { - Debug.Printf("Cannot switch to syslog - need Go 1.5 or higher") + Info.Printf("Cannot switch to syslog - need Go 1.5 or higher") +} + +func SwitchLoggerToSyslog(p syslog.Priority) { + Info.Printf("Cannot switch to syslog - need Go 1.5 or higher") } |