This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 5fcf0dc5fa4ae3b4c5d258b2ddc9428648a5f5d3 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Fri Oct 8 14:10:07 2021 +0200 Fixed CS --- .../main/java/org/apache/camel/impl/engine/AbstractCamelContext.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java index e4ab044..34d0b90 100644 --- a/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java +++ b/core/camel-base-engine/src/main/java/org/apache/camel/impl/engine/AbstractCamelContext.java @@ -2893,7 +2893,8 @@ public abstract class AbstractCamelContext extends BaseService bootstraps.clear(); if (adapt(ExtendedCamelContext.class).getExchangeFactory().isPooled()) { - LOG.info("Pooled mode enabled. Camel pools and reuses objects to reduce JVM object allocations. The pool size is: " + adapt(ExtendedCamelContext.class).getExchangeFactory().getCapacity() + " elements."); + LOG.info("Pooled mode enabled. Camel pools and reuses objects to reduce JVM object allocations. The pool size is: " + + adapt(ExtendedCamelContext.class).getExchangeFactory().getCapacity() + " elements."); } if (isLightweight()) { LOG.info("Lightweight mode enabled. Performing optimizations and memory reduction.");