diff options
author | Jakob Unterwurzacher | 2016-01-22 21:39:35 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-01-22 21:41:34 +0100 |
commit | df41183e9b86ffd152203f4addfb649319b2cb6e (patch) | |
tree | 44ddbd30eaccad593dd6bece188d2d2f7de71cd9 /cryptfs/log.go | |
parent | 505fef5a3c514b1cfaa545ebeaa49127a6ec862e (diff) |
Disable syslog in Go 1.4 and lower (method SetOutput does not exist)
Diffstat (limited to 'cryptfs/log.go')
-rw-r--r-- | cryptfs/log.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/cryptfs/log.go b/cryptfs/log.go index a5b5115..44cb84f 100644 --- a/cryptfs/log.go +++ b/cryptfs/log.go @@ -3,7 +3,6 @@ package cryptfs import ( "encoding/json" "log" - "log/syslog" "os" ) @@ -34,14 +33,6 @@ func (l *toggledLogger) Println(v ...interface{}) { } l.Logger.Println(v...) } -func (l *toggledLogger) SwitchToSyslog(p syslog.Priority) { - w, err := syslog.New(p, PROGRAM_NAME) - if err != nil { - Warn.Printf("Cannot switch 0x%02x to syslog: %v", p, err) - } else { - l.SetOutput(w) - } -} // As defined by http://elinux.org/Debugging_by_printing#Log_Levels // Debug messages |