Fix swapped placeholders in a log message

This commit is contained in:
Jon Chambers 2024-08-30 17:01:11 -04:00
parent d835a2a450
commit 46e0f5da74
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ public class MessageDeliveryLoopMonitor {
.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);
}
});
}