Skip to content

Commit

Permalink
eth: move "timed out DAO fork check, dropping" to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
fjl committed Oct 7, 2016
1 parent e66b158 commit 82b14a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ func (pm *ProtocolManager) handle(p *peer) error {
}
// Start a timer to disconnect if the peer doesn't reply in time
p.forkDrop = time.AfterFunc(daoChallengeTimeout, func() {
glog.V(logger.Warn).Infof("%v: timed out DAO fork-check, dropping", p)
glog.V(logger.Debug).Infof("%v: timed out DAO fork-check, dropping", p)
pm.removePeer(p.id)
})
// Make sure it's cleaned up if the peer dies off
Expand Down

0 comments on commit 82b14a0

Please sign in to comment.