mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 17:04:01 +01:00
17 lines
298 B
Go
17 lines
298 B
Go
|
// Systemd interface for non-Unix variants only
|
||
|
|
||
|
// +build windows nacl plan9
|
||
|
|
||
|
package log
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"runtime"
|
||
|
)
|
||
|
|
||
|
// Enables systemd logs if configured or if auto detected
|
||
|
func startSystemdLog() bool {
|
||
|
log.Fatalf("--log-systemd not supported on %s platform", runtime.GOOS)
|
||
|
return false
|
||
|
}
|