mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +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>
14 lines
182 B
Go
14 lines
182 B
Go
// +build linux
|
|
|
|
package journald
|
|
|
|
import (
|
|
"github.com/wercker/journalhook"
|
|
)
|
|
|
|
//Enable enables the journald logrus hook
|
|
func Enable() error {
|
|
journalhook.Enable()
|
|
return nil
|
|
}
|