diff --git a/src/core/Akka.Cluster/Cluster.cs b/src/core/Akka.Cluster/Cluster.cs index e29098d073a..949241968a4 100644 --- a/src/core/Akka.Cluster/Cluster.cs +++ b/src/core/Akka.Cluster/Cluster.cs @@ -601,7 +601,7 @@ internal void LogInfo(string message) internal void LogInfo(string template, object arg1) { if (_settings.LogInfo) - _log.Info($"Cluster Node [{_selfAddress}] - " + template, arg1); + _log.Info("Cluster Node [{1}] - " + template, arg1, _selfAddress); } /// @@ -613,7 +613,7 @@ internal void LogInfo(string template, object arg1) internal void LogInfo(string template, object arg1, object arg2) { if (_settings.LogInfo) - _log.Info($"Cluster Node [{_selfAddress}] - " + template, arg1, arg2); + _log.Info("Cluster Node [{2}] - " + template, arg1, arg2, _selfAddress); } }