Skip to content

Commit

Permalink
Fix missing placeholder in debug log.
Browse files Browse the repository at this point in the history
Signed-off-by: Yufei Cai <yufei.cai@bosch.io>
  • Loading branch information
yufei-cai committed May 21, 2021
1 parent 3a9e9dd commit 559ccc2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ private void dispatchMapped(final InboundMappingOutcomes outcomes) {
.flatMap(dispatchResponsesAndSearchCommands::apply)
.mapToInt(this::dispatchIncomingSignal)
.sum();
logger.debug("OnMapped from <{}>: ", sender, outcomes);
logger.debug("OnMapped from <{}>: <{}>", sender, outcomes);
sender.tell(ResponseCollectorActor.setCount(ackRequestingSignalCount), getSelf());
}

Expand Down

0 comments on commit 559ccc2

Please sign in to comment.