rclone/fs/log/syslog.go

17 lines
300 B
Go
Raw Normal View History

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