prysm-pulse/endtoend/components/log.go
Victor Farazdagi 89da5d1ef5
E2E refactoring: bootnode (#8659)
* BeaconNode

* types/types.go

* BootNode

* gofmt

* remove unused argument

* remove redundant comment

* add deprecation comment

* types comment

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-03-24 20:55:12 +00:00

12 lines
160 B
Go

package components
import (
"github.com/sirupsen/logrus"
)
var log = logrus.WithField("prefix", "components")
func init() {
logrus.SetReportCaller(true)
}