mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
12 lines
160 B
Go
12 lines
160 B
Go
|
package components
|
||
|
|
||
|
import (
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
var log = logrus.WithField("prefix", "components")
|
||
|
|
||
|
func init() {
|
||
|
logrus.SetReportCaller(true)
|
||
|
}
|