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/a57455e3 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a57455e3 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a57455e3 Branch: refs/heads/camel-2.10.x Commit: a57455e3aa3dcd2f8d8f1ae6ca53e7aea0dfc573 Parents: 9444097 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:51 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/a57455e3/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);