Add log file (#4999)

This commit is contained in:
terence tsao 2020-03-04 17:30:52 +01:00 committed by GitHub
parent 26582cbf2e
commit a612557fe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -4,6 +4,7 @@ go_library(
name = "go_default_library",
srcs = [
"epoch_boundary_root.go",
"log.go",
"replay.go",
"service.go",
],
@ -18,6 +19,7 @@ go_library(
"//shared/featureconfig:go_default_library",
"@com_github_pkg_errors//:go_default_library",
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
"@com_github_sirupsen_logrus//:go_default_library",
"@io_opencensus_go//trace:go_default_library",
],
)

View File

@ -0,0 +1,5 @@
package stategen
import "github.com/sirupsen/logrus"
var log = logrus.WithField("prefix", "state-gen")