prysm-pulse/shared/journald/journald.go

13 lines
192 B
Go
Raw Normal View History

// +build !linux
package journald
import (
"fmt"
)
//Enabled returns an error on non-Linux systems
func Enable() error {
return fmt.Errorf("journald is not supported in this platform")
}