From 14efb385d4fb2da5d43e60d72aa30bd3a2eb6db2 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Thu, 14 Nov 2024 17:42:48 +0100 Subject: [PATCH] update log message --- .../apache/pekko/remote/artery/InboundQuarantineCheck.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/remote/src/main/scala/org/apache/pekko/remote/artery/InboundQuarantineCheck.scala b/remote/src/main/scala/org/apache/pekko/remote/artery/InboundQuarantineCheck.scala index 23c67ee5c2..b06940dfe9 100644 --- a/remote/src/main/scala/org/apache/pekko/remote/artery/InboundQuarantineCheck.scala +++ b/remote/src/main/scala/org/apache/pekko/remote/artery/InboundQuarantineCheck.scala @@ -47,8 +47,9 @@ private[remote] class InboundQuarantineCheck(inboundContext: InboundContext) if (association.associationState.isQuarantined(env.originUid)) { if (association.associationState.quarantinedButHarmless(env.originUid)) { log.info( - "Quarantined but harmless message from [{}#{}] was dropped. " + + "Message [{}] from [{}#{}] was dropped. " + "The system is quarantined but the UID is known to be harmless.", + Logging.messageClassName(env.message), association.remoteAddress, env.originUid) } else {