mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
17 lines
292 B
Go
17 lines
292 B
Go
// Syslog interface for non-Unix variants only
|
|
|
|
// +build windows nacl plan9
|
|
|
|
package fs
|
|
|
|
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
|
|
}
|