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

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


The following commit(s) were added to refs/heads/main by this push:
     new 525c97c0aff Polished
525c97c0aff is described below

commit 525c97c0aff040a626b87d6e4c5ea704ed30bb8b
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Mon Jun 20 09:30:15 2022 +0200

    Polished
---
 .../java/org/apache/camel/impl/engine/PrototypeExchangeFactory.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PrototypeExchangeFactory.java
 
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PrototypeExchangeFactory.java
index 63215d32a26..17ae924e77c 100644
--- 
a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PrototypeExchangeFactory.java
+++ 
b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/PrototypeExchangeFactory.java
@@ -158,10 +158,10 @@ public class PrototypeExchangeFactory extends 
PooledObjectFactorySupport<Exchang
                 if (leak) {
                     long leaks = (created + acquired) - (released + discarded);
                     log.warn(
-                            "{}{} ({}) usage (leaks detected: {}) [pooled: {}, 
created: {}, acquired: {} released: {}, discarded: {}]",
+                            "{}{} ({}) usage (leaks detected: {}) [pooled: {}, 
created: {}, acquired: {}, released: {}, discarded: {}]",
                             name, id, uri, leaks, pooled, created, acquired, 
released, discarded);
                 } else {
-                    log.info("{}{} ({}) usage [pooled: {}, created: {}, 
acquired: {} released: {}, discarded: {}]",
+                    log.info("{}{} ({}) usage [pooled: {}, created: {}, 
acquired: {}, released: {}, discarded: {}]",
                             name, id, uri, pooled, created, acquired, 
released, discarded);
                 }
             }

Reply via email to