File tree Expand file tree Collapse file tree 4 files changed +9
-1
lines changed
beacon-chain/light-client Expand file tree Collapse file tree 4 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ go_library(
66 "cache.go" ,
77 "helpers.go" ,
88 "lightclient.go" ,
9+ "log.go" ,
910 "store.go" ,
1011 ],
1112 importpath = "github.com/OffchainLabs/prysm/v6/beacon-chain/light-client" ,
Original file line number Diff line number Diff line change 1+ package light_client
2+
3+ import "github.com/sirupsen/logrus"
4+
5+ var log = logrus .WithField ("prefix" , "light-client" )
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import (
1414 "github.com/OffchainLabs/prysm/v6/consensus-types/primitives"
1515 "github.com/OffchainLabs/prysm/v6/time/slots"
1616 "github.com/pkg/errors"
17- log "github.com/sirupsen/logrus"
1817)
1918
2019var ErrLightClientBootstrapNotFound = errors .New ("light client bootstrap not found" )
Original file line number Diff line number Diff line change 1+ ### Ignored
2+
3+ - Add log prefix to the light-client package.
You can’t perform that action at this time.
0 commit comments