aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-04-09 23:19:05 +0800
committerobscuren <geffobscura@gmail.com>2015-04-09 23:19:05 +0800
commit663fd8f8491fcf10429388237cbb361856c6e49c (patch)
tree816456e6d44b124ac8c2dce814756f62e99a8ae0 /eth/protocol.go
parent46898f1e554a87b88d722bcf0ef3bfb2c9974736 (diff)
downloadgo-tangerine-663fd8f8491fcf10429388237cbb361856c6e49c.tar
go-tangerine-663fd8f8491fcf10429388237cbb361856c6e49c.tar.gz
go-tangerine-663fd8f8491fcf10429388237cbb361856c6e49c.tar.bz2
go-tangerine-663fd8f8491fcf10429388237cbb361856c6e49c.tar.lz
go-tangerine-663fd8f8491fcf10429388237cbb361856c6e49c.tar.xz
go-tangerine-663fd8f8491fcf10429388237cbb361856c6e49c.tar.zst
go-tangerine-663fd8f8491fcf10429388237cbb361856c6e49c.zip
Moved log to debug
Diffstat (limited to 'eth/protocol.go')
-rw-r--r--eth/protocol.go15
1 files changed, 10 insertions, 5 deletions
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)
+ }
+ */
}