summaryrefslogtreecommitdiff
path: root/cmd/podman/syslog_unsupported.go
blob: 3765d96b9c004836deb2c6ffd0718239a186c147 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// +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)
}