mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
19 lines
233 B
Go
19 lines
233 B
Go
//go:build !linux && !freebsd
|
|
// +build !linux,!freebsd
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func syslogHook() {
|
|
if !useSyslog {
|
|
return
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, "Logging to Syslog is not supported on Windows")
|
|
os.Exit(1)
|
|
}
|