You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by bv...@apache.org on 2019/12/30 20:58:18 UTC

[camel] branch master updated: http://www.slf4j.org/faq.html#paramException

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

bvahdat pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 7ec6f27  http://www.slf4j.org/faq.html#paramException
7ec6f27 is described below

commit 7ec6f2704a83f1a2bb7b2a761007a2b1baba1fe3
Author: Babak Vahdat <bv...@apache.org>
AuthorDate: Mon Dec 30 21:57:56 2019 +0100

    http://www.slf4j.org/faq.html#paramException
---
 .../src/main/java/org/apache/camel/impl/engine/ServicePool.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java b/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java
index 474541a..f11f461 100644
--- a/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java
+++ b/core/camel-base/src/main/java/org/apache/camel/impl/engine/ServicePool.java
@@ -213,7 +213,7 @@ public class ServicePool<S extends Service> extends ServiceSupport implements No
         try {
             s.stop();
         } catch (Exception e) {
-            LOG.debug("Error stopping service: " +  s, e);
+            LOG.debug("Error stopping service: {}", s, e);
         }
     }