Skip to content

Commit

Permalink
add logs
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod authored and GrapeBaBa committed Jul 20, 2024
1 parent 458839f commit 2611406
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions p2p/discover/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ func (p *PortalProtocolAPI) RoutingTableInfo() *RoutingTableInfo {
}

func (p *PortalProtocolAPI) AddEnr(enr string) (bool, error) {
p.portalProtocol.Log.Debug("serving AddEnr", "enr", enr)
n, err := enode.Parse(enode.ValidSchemes, enr)
if err != nil {
return false, err
Expand Down
2 changes: 1 addition & 1 deletion p2p/discover/portal_protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func (p *PortalProtocol) AddEnr(n *enode.Node) {
defer p.table.mutex.Unlock()
added := p.table.handleAddNode(addNodeOp{node: n, isInbound: true, forceSetLive: true})
if !added {
p.Log.Warn("add node failed", "id", n.ID())
p.Log.Warn("add node failed", "id", n.ID(), n.IPAddr())
return
}
id := n.ID().String()
Expand Down

0 comments on commit 2611406

Please sign in to comment.