mirror of
https://github.com/rclone/rclone.git
synced 2025-08-07 05:07:09 +02:00
16 lines
299 B
Go
16 lines
299 B
Go
// Windows event logging stubs for non windows machines
|
|
|
|
//go:build !windows
|
|
|
|
package log
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
// Starts windows event log if configured.
|
|
func startWindowsEventLog(*OutputHandler) error {
|
|
return fmt.Errorf("windows event log not supported on %s platform", runtime.GOOS)
|
|
}
|