overdue
This commit is contained in:
16
.rclone_repo/fs/log/syslog.go
Executable file
16
.rclone_repo/fs/log/syslog.go
Executable file
@@ -0,0 +1,16 @@
|
||||
// Syslog interface for non-Unix variants only
|
||||
|
||||
// +build windows nacl plan9
|
||||
|
||||
package log
|
||||
|
||||
import (
|
||||
"log"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
// Starts syslog if configured, returns true if it was started
|
||||
func startSysLog() bool {
|
||||
log.Fatalf("--syslog not supported on %s platform", runtime.GOOS)
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user