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_go1.4.go | |
parent | 505fef5a3c514b1cfaa545ebeaa49127a6ec862e (diff) |
Disable syslog in Go 1.4 and lower (method SetOutput does not exist)
Diffstat (limited to 'cryptfs/log_go1.4.go')
-rw-r--r-- | cryptfs/log_go1.4.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cryptfs/log_go1.4.go b/cryptfs/log_go1.4.go new file mode 100644 index 0000000..6bc6457 --- /dev/null +++ b/cryptfs/log_go1.4.go @@ -0,0 +1,8 @@ +// +build !go1.5 +// = go 1.4 or lower + +package cryptfs + +func (l *toggledLogger) SwitchToSyslog(p syslog.Priority) { + Debug.Printf("Cannot switch to syslog - need Go 1.5 or higher") +} |