From f0b976d557cc61cc0ae2972e1dc7ea4ca65fa1d3 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Mon, 11 Feb 2019 17:24:08 +0100 Subject: [PATCH] fix wrong log level of cluster debug logging (#26351) --- akka-cluster/src/main/scala/akka/cluster/Cluster.scala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/akka-cluster/src/main/scala/akka/cluster/Cluster.scala b/akka-cluster/src/main/scala/akka/cluster/Cluster.scala index d28564e4c7..319038c72e 100644 --- a/akka-cluster/src/main/scala/akka/cluster/Cluster.scala +++ b/akka-cluster/src/main/scala/akka/cluster/Cluster.scala @@ -446,13 +446,13 @@ class Cluster(val system: ExtendedActorSystem) extends Extension { logAtLevel(Logging.DebugLevel, message) def logDebug(template: String, arg1: Any): Unit = - logAtLevel(Logging.InfoLevel, template, arg1) + logAtLevel(Logging.DebugLevel, template, arg1) def logDebug(template: String, arg1: Any, arg2: Any): Unit = - logAtLevel(Logging.InfoLevel, template, arg1, arg2) + logAtLevel(Logging.DebugLevel, template, arg1, arg2) def logDebug(template: String, arg1: Any, arg2: Any, arg3: Any): Unit = - logAtLevel(Logging.InfoLevel, template, arg1, arg2, arg3) + logAtLevel(Logging.DebugLevel, template, arg1, arg2, arg3) def logInfo(message: String): Unit = logAtLevel(Logging.InfoLevel, message)