rclone/fs/log/systemd.go

18 lines
334 B
Go
Raw Normal View History

// Systemd interface for non-Unix variants only
2021-09-09 14:25:25 +02:00
//go:build windows || nacl || plan9
// +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
}