Files
cloudly-min/.rclone_repo/fs/log/syslog.go
2020-01-13 03:37:51 +00:00

17 lines
293 B
Go
Executable File

// 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
}