diff options
author | obscuren <geffobscura@gmail.com> | 2014-02-24 19:12:53 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-02-24 19:12:53 +0800 |
commit | 22e2c3429bee515f69250dfdddc419a389e8ccd6 (patch) | |
tree | 283d12b0f545aab9d9a1dbb33e6eac849a40f431 /peer.go | |
parent | 4cc5b03137e513dd54e9feb07a564398ca53b342 (diff) | |
download | go-tangerine-22e2c3429bee515f69250dfdddc419a389e8ccd6.tar go-tangerine-22e2c3429bee515f69250dfdddc419a389e8ccd6.tar.gz go-tangerine-22e2c3429bee515f69250dfdddc419a389e8ccd6.tar.bz2 go-tangerine-22e2c3429bee515f69250dfdddc419a389e8ccd6.tar.lz go-tangerine-22e2c3429bee515f69250dfdddc419a389e8ccd6.tar.xz go-tangerine-22e2c3429bee515f69250dfdddc419a389e8ccd6.tar.zst go-tangerine-22e2c3429bee515f69250dfdddc419a389e8ccd6.zip |
Infof rather than infoln
Diffstat (limited to 'peer.go')
-rw-r--r-- | peer.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -390,7 +390,7 @@ func (p *Peer) HandleInbound() { p.QueueMessage(ethwire.NewMessage(ethwire.MsgNotInChainTy, []interface{}{lastHash.Raw()})) } case ethwire.MsgNotInChainTy: - ethutil.Config.Log.Infoln("Not in chain %x\n", msg.Data) + ethutil.Config.Log.Infof("Not in chain %x\n", msg.Data) // TODO // Unofficial but fun nonetheless @@ -556,7 +556,7 @@ func (p *Peer) CatchupWithPeer() { msg := ethwire.NewMessage(ethwire.MsgGetChainTy, []interface{}{p.ethereum.BlockManager.BlockChain().CurrentBlock.Hash(), uint64(50)}) p.QueueMessage(msg) - ethutil.Config.Log.Debugln("Requesting blockchain %x...\n", p.ethereum.BlockManager.BlockChain().CurrentBlock.Hash()[:4]) + ethutil.Config.Log.Debugf("Requesting blockchain %x...\n", p.ethereum.BlockManager.BlockChain().CurrentBlock.Hash()[:4]) } } |