aboutsummaryrefslogtreecommitdiffstats
path: root/eth/handler.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-10-11 02:38:27 +0800
committerGitHub <noreply@github.com>2016-10-11 02:38:27 +0800
commitbe6a3696a9642c9511c565f4c35d1c8aae6434ad (patch)
tree9954d837719e7ce421c0685089a49830cc627519 /eth/handler.go
parent7943ecb81292c09d85abb2509f76fd3637810eca (diff)
parent82b14a05f2c1aca2df62e8fd5da9df6934fed2de (diff)
downloadgo-tangerine-be6a3696a9642c9511c565f4c35d1c8aae6434ad.tar
go-tangerine-be6a3696a9642c9511c565f4c35d1c8aae6434ad.tar.gz
go-tangerine-be6a3696a9642c9511c565f4c35d1c8aae6434ad.tar.bz2
go-tangerine-be6a3696a9642c9511c565f4c35d1c8aae6434ad.tar.lz
go-tangerine-be6a3696a9642c9511c565f4c35d1c8aae6434ad.tar.xz
go-tangerine-be6a3696a9642c9511c565f4c35d1c8aae6434ad.tar.zst
go-tangerine-be6a3696a9642c9511c565f4c35d1c8aae6434ad.zip
Merge pull request #3104 from fjl/core-import-log
core: print import stats more often
Diffstat (limited to 'eth/handler.go')
-rw-r--r--eth/handler.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/handler.go b/eth/handler.go
index d72185dd3..e478990f7 100644
--- a/eth/handler.go
+++ b/eth/handler.go
@@ -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