1
0
mirror of https://github.com/rclone/rclone.git synced 2025-11-23 21:44:49 +02:00
Files
rclone/fs/log/syslog.go

18 lines
351 B
Go
Raw Normal View History

// Syslog interface for non-Unix variants only
2021-09-09 15:25:25 +03:00
//go:build windows || nacl || plan9
package log
import (
"runtime"
"github.com/rclone/rclone/fs"
)
// Starts syslog if configured, returns true if it was started
func startSysLog(handler *OutputHandler) bool {
fs.Fatalf(nil, "--syslog not supported on %s platform", runtime.GOOS)
return false
}