mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 17:05:48 +00:00
18 lines
212 B
Go
18 lines
212 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
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)
|
|
}
|