aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/dial.go
diff options
context:
space:
mode:
Diffstat (limited to 'p2p/dial.go')
-rw-r--r--p2p/dial.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/p2p/dial.go b/p2p/dial.go
index b323bdac1..cd226c53a 100644
--- a/p2p/dial.go
+++ b/p2p/dial.go
@@ -223,6 +223,7 @@ func (s *dialstate) newTasks(nRunning int, peers map[enode.ID]*Peer, now time.Ti
log.Warn("Removing direct dial candidate", "id", t.dest.ID(), "addr", &net.TCPAddr{IP: t.dest.IP(), Port: t.dest.TCP()}, "err", err)
delete(s.direct, t.dest.ID())
case nil:
+ log.Debug("Direct peer connected", "id", id)
s.dialing[id] = t.flags
newtasks = append(newtasks, t)
}