Skip to content

Commit aba5c84

Browse files
committed
remove temp logging
1 parent 5eb442b commit aba5c84

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

cluster/src/main/scala/org/apache/pekko/cluster/ClusterDaemon.scala

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -708,10 +708,9 @@ private[cluster] class ClusterCoreDaemon(publisher: ActorRef, joinConfigCompatCh
708708
def join(address: Address): Unit = {
709709
if (!acceptedProtocols.contains(address.protocol))
710710
logWarning(
711-
"Trying to join member with wrong protocol, but was ignored, expected any of {} but was [{}] - selfAddress.protocol={}",
711+
"Trying to join member with wrong protocol, but was ignored, expected any of {} but was [{}]",
712712
acceptedProtocols,
713-
address.protocol,
714-
selfAddress.protocol)
713+
address.protocol)
715714
else if (address.system != selfAddress.system)
716715
logWarning(
717716
"Trying to join member with wrong ActorSystem name, but was ignored, expected [{}] but was [{}]",

0 commit comments

Comments
 (0)