mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
5230af0e0c
* endtoend to testing/ * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
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)
|
|
}
|