1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-13 20:38:12 +02:00
rclone/fs/log/systemd.go

17 lines
298 B
Go
Raw Normal View History

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