mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
88083d1000
* Add journald option for logger Fixes #7353 * fix docker images * go mod tidy Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
13 lines
192 B
Go
13 lines
192 B
Go
// +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")
|
|
}
|