aboutsummaryrefslogtreecommitdiffstats
path: root/eth/sync.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-11 23:27:34 +0800
committerobscuren <geffobscura@gmail.com>2015-05-11 23:27:34 +0800
commit48bd48876c02d1a08690b9604df09ef4bcf77838 (patch)
tree2251978416ad615ee8ca5e465a5bf9ed5b74efed /eth/sync.go
parent21e52efdfed19c4376b830f8ad0e52a9e599f633 (diff)
downloadgo-tangerine-48bd48876c02d1a08690b9604df09ef4bcf77838.tar
go-tangerine-48bd48876c02d1a08690b9604df09ef4bcf77838.tar.gz
go-tangerine-48bd48876c02d1a08690b9604df09ef4bcf77838.tar.bz2
go-tangerine-48bd48876c02d1a08690b9604df09ef4bcf77838.tar.lz
go-tangerine-48bd48876c02d1a08690b9604df09ef4bcf77838.tar.xz
go-tangerine-48bd48876c02d1a08690b9604df09ef4bcf77838.tar.zst
go-tangerine-48bd48876c02d1a08690b9604df09ef4bcf77838.zip
eth, eth/downloader: moved pending queue error message to debug
Diffstat (limited to 'eth/sync.go')
-rw-r--r--eth/sync.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/eth/sync.go b/eth/sync.go
index d955eaa50..00b571782 100644
--- a/eth/sync.go
+++ b/eth/sync.go
@@ -98,7 +98,8 @@ func (pm *ProtocolManager) synchronise(peer *peer) {
case downloader.ErrTimeout:
glog.V(logger.Debug).Infof("Removing peer %v due to sync timeout", peer.id)
pm.removePeer(peer)
-
+ case downloader.ErrPendingQueue:
+ glog.V(logger.Debug).Infoln("Synchronisation aborted:", err)
default:
glog.V(logger.Warn).Infof("Synchronisation failed: %v", err)
}