This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit abf2a918b2a5297ae9925b96a3361a5168987523 Author: Otavio R. Piske <[email protected]> AuthorDate: Fri May 24 19:35:58 2024 +0200 (chores) camel-base-engine: use log markers Signed-off-by: Otavio R. Piske <[email protected]> --- .../org/apache/camel/impl/debugger/DebuggerJmxConnectorService.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DebuggerJmxConnectorService.java b/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DebuggerJmxConnectorService.java index 64ad17a51c0..c309e93e976 100644 --- a/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DebuggerJmxConnectorService.java +++ b/core/camel-base-engine/src/main/java/org/apache/camel/impl/debugger/DebuggerJmxConnectorService.java @@ -94,9 +94,8 @@ public class DebuggerJmxConnectorService extends ServiceSupport implements Camel cs.stop(); LOG.debug("Stopped Debugger JMX Connector"); } catch (IOException e) { - LOG.debug("Error occurred during stopping CamelDebugger JMX Connector: " + cs - + ". This exception will be ignored.", - e); + LOG.debug("Error occurred during stopping CamelDebugger JMX Connector: {}. This exception will be ignored.", + cs, e); } cs = null; }
