You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2013/08/05 14:46:11 UTC

[1/3] git commit: Turn down INFO logging as that was per request which can flood the logs.

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 <da...@apache.org>
Authored: Mon Aug 5 14:40:17 2013 +0200
Committer: Claus Ibsen <da...@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);


[3/3] git commit: Turn down INFO logging as that was per request which can flood the logs.

Posted by da...@apache.org.
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 <da...@apache.org>
Authored: Mon Aug 5 14:40:17 2013 +0200
Committer: Claus Ibsen <da...@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);


[2/3] git commit: Turn down INFO logging as that was per request which can flood the logs.

Posted by da...@apache.org.
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 <da...@apache.org>
Authored: Mon Aug 5 14:40:17 2013 +0200
Committer: Claus Ibsen <da...@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);