This is an automated email from the ASF dual-hosted git repository.

apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 73b7ca7c77d2a88eaaf58922cebaf625d1871496
Author: Sanjana <[email protected]>
AuthorDate: Fri Feb 6 00:14:47 2026 +0530

    chore: replace string concatenation with parameterized logging
---
 .../runtime/src/main/java/org/apache/camel/quarkus/main/CamelMain.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/main/CamelMain.java
 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/main/CamelMain.java
index 2493bff72d..4833062fce 100644
--- 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/main/CamelMain.java
+++ 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/main/CamelMain.java
@@ -144,7 +144,7 @@ public final class CamelMain extends MainCommandLineSupport 
implements HasCamelC
                     camelTemplate = null;
                 }
             } catch (Exception e) {
-                LOG.debug("Error stopping camelTemplate due " + e.getMessage() 
+ ". This exception is ignored.", e);
+                LOG.debug("Error stopping camelTemplate due {}. This exception 
is ignored.", e.getMessage(), e);
             }
 
             beforeStop();

Reply via email to