Skip to content

Commit

Permalink
fix log line in controller
Browse files Browse the repository at this point in the history
  • Loading branch information
Trent Mohay committed May 6, 2020
1 parent 54ea2a0 commit 414a1b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void handleNewBlockEvent(final NewChainHead newChainHead) {
if (newBlockHeader.getNumber() == currentMiningParent.getNumber()) {
if (newBlockHeader.getHash().equals(currentMiningParent.getHash())) {
LOG.trace(
"Discarding duplicate NewChainHead event. chainHeight={} newBlockHash={} parentBlockHash",
"Discarding duplicate NewChainHead event. chainHeight={} newBlockHash={} parentBlockHash={}",
newBlockHeader.getNumber(),
newBlockHeader.getHash(),
currentMiningParent.getHash());
Expand Down

0 comments on commit 414a1b8

Please sign in to comment.