Skip to content

Commit

Permalink
revert to semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
tbenr committed Oct 23, 2024
1 parent f9fe500 commit 5ccd460
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public synchronized void logWithSuppression(final Throwable error, final UInt64
} else if (lastRootCause instanceof NoPeersForOutboundMessageException) {
LOG.log(
suppress ? Level.DEBUG : Level.WARN,
"Failed to publish {}(s) for slot {}: {}",
"Failed to publish {}(s) for slot {}; {}",
messageType,
lastErroredSlot,
rootCause.getMessage());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void shouldLogMultipleGenericErrorsWithDifferentCausesAtErrorLevel() {
private static String noPeersMessage(final int slot) {
return "Failed to publish thingy(s) for slot "
+ slot
+ ": "
+ "; "
+ NO_PEERS_FOR_OUTBOUND_MESSAGE_EXCEPTION.getMessage();
}

Expand Down

0 comments on commit 5ccd460

Please sign in to comment.