Skip to content

Commit

Permalink
Fix swapped placeholders in a log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-signal committed Aug 30, 2024
1 parent d835a2a commit 46e0f5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void recordDeliveryAttempt(final UUID accountIdentifier,
.thenAccept(deliveryAttemptCount -> {
if (deliveryAttemptCount == DELIVERY_LOOP_THRESHOLD) {
logger.warn("Detected loop delivering message {} via {} to {}:{} ({})",
messageGuid, accountIdentifier, deviceId, context, userAgent);
messageGuid, context, accountIdentifier, deviceId, userAgent);
}
});
}
Expand Down

0 comments on commit 46e0f5d

Please sign in to comment.