mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
update logging
Downgrade some errors to warn Replace a fmt by info close #269 close #349
This commit is contained in:
parent
6e2cea5da1
commit
7623d5660a
6 changed files with 7 additions and 7 deletions
|
|
@ -478,7 +478,7 @@ func (c *Posv) YourTurn(chain consensus.ChainReader, parent *types.Header, signe
|
|||
masternodes := c.GetMasternodes(chain, parent)
|
||||
snap, err := c.GetSnapshot(chain, parent)
|
||||
if err != nil {
|
||||
log.Error("Failed when trying to commit new work", "err", err)
|
||||
log.Warn("Failed when trying to commit new work", "err", err)
|
||||
return 0, -1, -1, false, err
|
||||
}
|
||||
if len(masternodes) == 0 {
|
||||
|
|
@ -499,7 +499,7 @@ func (c *Posv) YourTurn(chain consensus.ChainReader, parent *types.Header, signe
|
|||
log.Info("Masternodes cycle info", "number of masternodes", len(masternodes), "previous", pre, "position", preIndex, "current", signer, "position", curIndex)
|
||||
}
|
||||
for i, s := range masternodes {
|
||||
fmt.Printf("%d - %s\n", i, s.String())
|
||||
log.Info("%d - %s\n", i, s.String())
|
||||
}
|
||||
if (preIndex+1)%len(masternodes) == curIndex {
|
||||
return len(masternodes), preIndex, curIndex, true, nil
|
||||
|
|
|
|||
|
|
@ -85,7 +85,7 @@ func CreateTransactionSign(chainConfig *params.ChainConfig, pool *core.TxPool, m
|
|||
// Add tx signed to local tx pool.
|
||||
err = pool.AddLocal(txSigned)
|
||||
if err != nil {
|
||||
log.Error("Fail to add tx sign to local pool.", "error", err, "number", block.NumberU64(), "hash", block.Hash().Hex(), "from", account.Address, "nonce", nonce)
|
||||
log.Warn("Fail to add tx sign to local pool.", "error", err, "number", block.NumberU64(), "hash", block.Hash().Hex(), "from", account.Address, "nonce", nonce)
|
||||
}
|
||||
|
||||
// Create secret tx.
|
||||
|
|
|
|||
|
|
@ -1171,7 +1171,7 @@ func (pool *TxPool) demoteUnexecutables() {
|
|||
if list.Len() > 0 && list.txs.Get(nonce) == nil {
|
||||
for _, tx := range list.Cap(0) {
|
||||
hash := tx.Hash()
|
||||
log.Error("Demoting invalidated transaction", "hash", hash)
|
||||
log.Warn("Demoting invalidated transaction", "hash", hash)
|
||||
pool.enqueueTx(hash, tx)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -295,7 +295,7 @@ func (d *Downloader) UnregisterPeer(id string) error {
|
|||
logger := log.New("peer", id)
|
||||
logger.Trace("Unregistering sync peer")
|
||||
if err := d.peers.Unregister(id); err != nil {
|
||||
logger.Error("Failed to unregister sync peer", "err", err)
|
||||
logger.Warn("Failed to unregister sync peer", "err", err)
|
||||
return err
|
||||
}
|
||||
d.queue.Revoke(id)
|
||||
|
|
|
|||
|
|
@ -205,7 +205,7 @@ func (pm *ProtocolManager) removePeer(id string) {
|
|||
// Unregister the peer from the downloader and Ethereum peer set
|
||||
pm.downloader.UnregisterPeer(id)
|
||||
if err := pm.peers.Unregister(id); err != nil {
|
||||
log.Error("Peer removal failed", "peer", id, "err", err)
|
||||
log.Warn("Peer removal failed", "peer", id, "err", err)
|
||||
}
|
||||
// Hard disconnect at the networking layer
|
||||
if peer != nil {
|
||||
|
|
|
|||
|
|
@ -499,7 +499,7 @@ func (self *worker) commitNewWork() {
|
|||
c := self.engine.(*posv.Posv)
|
||||
len, preIndex, curIndex, ok, err := c.YourTurn(self.chain, parent.Header(),self.coinbase)
|
||||
if err != nil {
|
||||
log.Error("Failed when trying to commit new work", "err", err)
|
||||
log.Warn("Failed when trying to commit new work", "err", err)
|
||||
return
|
||||
}
|
||||
if !ok {
|
||||
|
|
|
|||
Loading…
Reference in a new issue