2020-12-29 00:07:12 +01:00
|
|
|
// Systemd interface for non-Unix variants only
|
|
|
|
|
2021-09-09 15:25:25 +03:00
|
|
|
//go:build windows || nacl || plan9
|
2020-12-29 00:07:12 +01:00
|
|
|
// +build windows nacl plan9
|
|
|
|
|
|
|
|
package log
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Enables systemd logs if configured or if auto detected
|
|
|
|
func startSystemdLog() bool {
|
|
|
|
log.Fatalf("--log-systemd not supported on %s platform", runtime.GOOS)
|
|
|
|
return false
|
|
|
|
}
|