Browse Source

logger key doesn't support space

pull/534/head
hxzqlh 7 years ago
parent
commit
b9b2782c3c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      state/execution.go

+ 1
- 1
state/execution.go View File

@ -106,7 +106,7 @@ func execBlockOnProxyApp(eventCache types.Fireable, proxyAppConn proxy.AppConnCo
valDiff := abciResponses.EndBlock.Diffs
logger.Info("Executed block", "height", block.Height, "valid txs", validTxs, "invalid txs", invalidTxs)
logger.Info("Executed block", "height", block.Height, "validTxs", validTxs, "invalidTxs", invalidTxs)
if len(valDiff) > 0 {
logger.Info("Update to validator set", "updates", abci.ValidatorsString(valDiff))
}


Loading…
Cancel
Save