From 0786c4489e26b3e08f0ef554b2c19c7e0143dfe3 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Mon, 9 Dec 2024 18:21:08 +0100 Subject: [PATCH] add back brackets in logging (ClusterDaemon) --- .../src/main/scala/org/apache/pekko/cluster/ClusterDaemon.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/src/main/scala/org/apache/pekko/cluster/ClusterDaemon.scala b/cluster/src/main/scala/org/apache/pekko/cluster/ClusterDaemon.scala index 691c31667b..c703bdd6b1 100644 --- a/cluster/src/main/scala/org/apache/pekko/cluster/ClusterDaemon.scala +++ b/cluster/src/main/scala/org/apache/pekko/cluster/ClusterDaemon.scala @@ -705,7 +705,7 @@ private[cluster] class ClusterCoreDaemon(publisher: ActorRef, joinConfigCompatCh def join(address: Address): Unit = { if (!acceptedProtocols.contains(address.protocol)) logWarning( - "Trying to join member with wrong protocol, but was ignored, expected any of {} but was [{}]", + "Trying to join member with wrong protocol, but was ignored, expected any of [{}] but was [{}]", acceptedProtocols, address.protocol) else if (address.system != selfAddress.system)