0
0
mirror of https://github.com/signalapp/Signal-Server.git synced 2024-09-19 19:42:18 +02:00

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

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);
}
});
}