Turn down INFO logging as that was per request which can flood the logs.

Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/ba7dd72b
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/ba7dd72b
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/ba7dd72b

Branch: refs/heads/camel-2.11.x
Commit: ba7dd72bcbdc24b614a127afcc7008d61eb71493
Parents: 9c96407
Author: Claus Ibsen <davscl...@apache.org>
Authored: Mon Aug 5 14:40:17 2013 +0200
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Mon Aug 5 14:40:36 2013 +0200

----------------------------------------------------------------------
 .../org/apache/camel/util/jsse/SSLContextServerParameters.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/ba7dd72b/camel-core/src/main/java/org/apache/camel/util/jsse/SSLContextServerParameters.java
----------------------------------------------------------------------
diff --git 
a/camel-core/src/main/java/org/apache/camel/util/jsse/SSLContextServerParameters.java
 
b/camel-core/src/main/java/org/apache/camel/util/jsse/SSLContextServerParameters.java
index 8087a62..6fe2493 100644
--- 
a/camel-core/src/main/java/org/apache/camel/util/jsse/SSLContextServerParameters.java
+++ 
b/camel-core/src/main/java/org/apache/camel/util/jsse/SSLContextServerParameters.java
@@ -97,7 +97,7 @@ public class SSLContextServerParameters extends 
BaseSSLContextParameters {
             Configurer<SSLEngine> sslEngineConfigurer = new 
Configurer<SSLEngine>() {
                 @Override
                 public SSLEngine configure(SSLEngine engine) {
-                    LOG.info("Configuring client-auth on SSLEngine [{}] to 
[{}].", engine, clientAuthValue);
+                    LOG.trace("Configuring client-auth on SSLEngine [{}] to 
[{}].", engine, clientAuthValue);
                     switch (clientAuthValue) {
                     case NONE:
                         engine.setWantClientAuth(false);
@@ -136,7 +136,7 @@ public class SSLContextServerParameters extends 
BaseSSLContextParameters {
             Configurer<SSLServerSocket> sslServerSocketConfigurer = new 
Configurer<SSLServerSocket>() {
                 @Override
                 public SSLServerSocket configure(SSLServerSocket socket) {
-                    LOG.info("Configuring client-auth on SSLServerSocket [{}] 
to [{}].", socket, clientAuthValue);
+                    LOG.trace("Configuring client-auth on SSLServerSocket [{}] 
to [{}].", socket, clientAuthValue);
                     switch (clientAuthValue) {
                     case NONE:
                         socket.setWantClientAuth(false);

Reply via email to