Add missing import for Go 1.4

This commit is contained in:
Jakob Unterwurzacher 2016-01-22 21:42:58 +01:00
parent df41183e9b
commit 9f9cf882ad
1 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,10 @@
package cryptfs
import (
"log/syslog"
)
func (l *toggledLogger) SwitchToSyslog(p syslog.Priority) {
Debug.Printf("Cannot switch to syslog - need Go 1.5 or higher")
}