From 191e4ffbe6ce863980f6d239c49589055dd5535b Mon Sep 17 00:00:00 2001 From: saivr1t Date: Tue, 15 May 2018 18:46:36 +0300 Subject: [PATCH] AMQ-6963 Fix calling the toString() method in case of different log level. --- .../main/java/org/apache/activemq/ActiveMQConnection.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/activemq-client/src/main/java/org/apache/activemq/ActiveMQConnection.java b/activemq-client/src/main/java/org/apache/activemq/ActiveMQConnection.java index 9f12344549..3ac32d1bd5 100644 --- a/activemq-client/src/main/java/org/apache/activemq/ActiveMQConnection.java +++ b/activemq-client/src/main/java/org/apache/activemq/ActiveMQConnection.java @@ -1373,7 +1373,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon } private void forceCloseOnSecurityException(Throwable exception) { - LOG.trace("force close on security exception:" + this + ", transport=" + transport, exception); + LOG.trace("force close on security exception:{}, transport={}", this, transport, exception); onException(new IOException("Force close due to SecurityException on connect", exception)); } @@ -1933,8 +1933,8 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon } }); } else { - LOG.debug("Async client internal exception occurred with no exception listener registered: " - + error, error); + LOG.debug("Async client internal exception occurred with no exception listener registered: {}", + error, error); } } } @@ -1961,7 +1961,7 @@ public class ActiveMQConnection implements Connection, TopicConnection, QueueCon }); } else { - LOG.debug("Async exception with no exception listener: " + error, error); + LOG.debug("Async exception with no exception listener: {}", error, error); } } }