prysm-pulse/shared/journald/journald.go
Victor Farazdagi e5c69bd387
Add space at the start of comments (#8202)
* add space at the start of comments

* undo case change
2021-01-05 13:09:41 +00:00

13 lines
192 B
Go

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