mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 05:38:55 +00:00
b55ddb5a34
* Use go:build lines and remove obsolete +build lines * Run gazelle * Update crypto/bls/blst/stub.go * Update crypto/bls/blst/stub.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Nishant Das <nishdas93@gmail.com>
14 lines
183 B
Go
14 lines
183 B
Go
//go:build linux
|
|
|
|
package journald
|
|
|
|
import (
|
|
"github.com/wercker/journalhook"
|
|
)
|
|
|
|
//Enable enables the journald logrus hook
|
|
func Enable() error {
|
|
journalhook.Enable()
|
|
return nil
|
|
}
|