Updated Branches: refs/heads/camel-2.10.x 944409797 -> a57455e3a refs/heads/camel-2.11.x 9c964072d -> ba7dd72bc refs/heads/master 4209fabb6 -> e90cde7d2
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/e90cde7d Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/e90cde7d Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/e90cde7d Branch: refs/heads/master Commit: e90cde7d2db0fde2c30dc7a1a46c939aa1f135db Parents: 4209fab 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:17 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/e90cde7d/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);