mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
9935ca3733
* add tracing * monitoring pkg * move prom * Add client stats Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
13 lines
192 B
Go
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")
|
|
}
|