From 663fd8f8491fcf10429388237cbb361856c6e49c Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 9 Apr 2015 17:19:05 +0200 Subject: Moved log to debug --- eth/protocol.go | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'eth/protocol.go') diff --git a/eth/protocol.go b/eth/protocol.go index 09355cfcd..53855908b 100644 --- a/eth/protocol.go +++ b/eth/protocol.go @@ -8,6 +8,7 @@ import ( "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/errs" "github.com/ethereum/go-ethereum/logger" + "github.com/ethereum/go-ethereum/logger/glog" "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/rlp" ) @@ -366,7 +367,8 @@ func (self *ethProtocol) requestBlocks(hashes []common.Hash) error { func (self *ethProtocol) protoError(code int, format string, params ...interface{}) (err *errs.Error) { err = self.errors.New(code, format, params...) - err.Log(self.peer.Logger) + //err.Log(self.peer.Logger) + err.Log(glog.V(logger.Info)) return } @@ -382,8 +384,11 @@ func (self *ethProtocol) sendStatus() error { } func (self *ethProtocol) protoErrorDisconnect(err *errs.Error) { - err.Log(self.peer.Logger) - if err.Fatal() { - self.peer.Disconnect(p2p.DiscSubprotocolError) - } + //err.Log(self.peer.Logger) + err.Log(glog.V(logger.Debug)) + /* + if err.Fatal() { + self.peer.Disconnect(p2p.DiscSubprotocolError) + } + */ } -- cgit v1.2.3