You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/03/03 22:13:27 UTC

[camel] branch master updated: CAMEL-14650 - create connection manager method logs in debug mode.

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

acosentino 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 6542b7b  CAMEL-14650 - create connection manager method logs in debug mode.
     new 98dc89d  Merge pull request #3611 from djoleB/CAMEL-14650
6542b7b is described below

commit 6542b7b75d801ccf5fe8c0205a691c455476df76
Author: blanx <dj...@gmail.com>
AuthorDate: Tue Mar 3 23:04:46 2020 +0100

    CAMEL-14650 - create connection manager method logs in debug mode.
---
 .../src/main/java/org/apache/camel/component/http/HttpComponent.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java
index d1de045..b8b2b02 100644
--- a/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java
+++ b/components/camel-http/src/main/java/org/apache/camel/component/http/HttpComponent.java
@@ -397,7 +397,7 @@ public class HttpComponent extends HttpCommonComponent implements RestProducerFa
         if (localConnectionsPerRoute > 0) {
             answer.setDefaultMaxPerRoute(localConnectionsPerRoute);
         }
-        LOG.info("Created ClientConnectionManager {}", answer);
+        LOG.debug("Created ClientConnectionManager {}", answer);
 
         return answer;
     }