Skip to content

Commit

Permalink
Change To Debug Logs (#5917)
Browse files Browse the repository at this point in the history
* debug
  • Loading branch information
nisdas committed May 20, 2020
1 parent ea02edb commit 2de4f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beacon-chain/p2p/service.go
Expand Up @@ -426,13 +426,13 @@ func (s *Service) FindPeersWithSubnet(index uint64) (bool, error) {
// do not look for nodes with no tcp port set
if err := node.Record().Load(enr.WithEntry("tcp", new(enr.TCP))); err != nil {
if !enr.IsNotFound(err) {
log.WithError(err).Error("Could not retrieve tcp port")
log.WithError(err).Debug("Could not retrieve tcp port")
}
continue
}
subnets, err := retrieveAttSubnets(node.Record())
if err != nil {
log.Errorf("could not retrieve subnets: %v", err)
log.Debugf("could not retrieve subnets: %v", err)
continue
}
for _, comIdx := range subnets {
Expand Down

0 comments on commit 2de4f86

Please sign in to comment.