mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
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
|
||
|
}
|