From b9b2782c3c7d8fdc09457818027d38fb71011bdd Mon Sep 17 00:00:00 2001 From: hxzqlh Date: Wed, 14 Jun 2017 14:41:36 +0800 Subject: [PATCH] logger key doesn't support space --- state/execution.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/execution.go b/state/execution.go index 768a0b1de..da39b369b 100644 --- a/state/execution.go +++ b/state/execution.go @@ -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)) }