prysm-pulse/testing/endtoend/components/log.go
Raul Jordan 5230af0e0c
Move EndtoEnd Tests to Testing/ Folder (#9586)
* endtoend to testing/

* gaz

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-15 14:42:05 +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)
}