You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2011/03/11 21:02:59 UTC

svn commit: r1080746 - /camel/trunk/camel-core/src/main/java/org/apache/camel/processor/loadbalancer/FailOverLoadBalancer.java

Author: janstey
Date: Fri Mar 11 20:02:59 2011
New Revision: 1080746

URL: http://svn.apache.org/viewvc?rev=1080746&view=rev
Log:
noticed a few typos in the logs

Modified:
    camel/trunk/camel-core/src/main/java/org/apache/camel/processor/loadbalancer/FailOverLoadBalancer.java

Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/processor/loadbalancer/FailOverLoadBalancer.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/processor/loadbalancer/FailOverLoadBalancer.java?rev=1080746&r1=1080745&r2=1080746&view=diff
==============================================================================
--- camel/trunk/camel-core/src/main/java/org/apache/camel/processor/loadbalancer/FailOverLoadBalancer.java (original)
+++ camel/trunk/camel-core/src/main/java/org/apache/camel/processor/loadbalancer/FailOverLoadBalancer.java Fri Mar 11 20:02:59 2011
@@ -134,7 +134,7 @@ public class FailOverLoadBalancer extend
                 // are we exhausted by attempts?
                 if (maximumFailoverAttempts > -1 && attempts.get() > maximumFailoverAttempts) {
                     if (log.isDebugEnabled()) {
-                        log.debug("Braking out of failover after " + attempts + " failover attempts");
+                        log.debug("Breaking out of failover after " + attempts + " failover attempts");
                     }
                     break;
                 }
@@ -154,7 +154,7 @@ public class FailOverLoadBalancer extend
                     counter.set(0);
                 } else {
                     // no more processors to try
-                    log.trace("Braking out of failover as we reach the end of endpoints to use for failover");
+                    log.trace("Breaking out of failover as we reached the end of endpoints to use for failover");
                     break;
                 }
             }
@@ -257,7 +257,7 @@ public class FailOverLoadBalancer extend
                 // are we exhausted by attempts?
                 if (maximumFailoverAttempts > -1 && attempts.get() > maximumFailoverAttempts) {
                     if (log.isTraceEnabled()) {
-                        log.trace("Braking out of failover after " + attempts + " failover attempts");
+                        log.trace("Breaking out of failover after " + attempts + " failover attempts");
                     }
                     break;
                 }
@@ -273,7 +273,7 @@ public class FailOverLoadBalancer extend
                         counter.set(0);
                     } else {
                         // no more processors to try
-                        log.trace("Braking out of failover as we reach the end of endpoints to use for failover");
+                        log.trace("Breaking out of failover as we reached the end of endpoints to use for failover");
                         break;
                     }
                 }