You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cm...@apache.org on 2013/04/24 00:01:42 UTC

svn commit: r1471174 - /camel/trunk/camel-core/src/test/java/org/apache/camel/impl/ComponentConfigurationTest.java

Author: cmueller
Date: Tue Apr 23 22:01:41 2013
New Revision: 1471174

URL: http://svn.apache.org/r1471174
Log:
use a logger instead of System.out.println()

Modified:
    camel/trunk/camel-core/src/test/java/org/apache/camel/impl/ComponentConfigurationTest.java

Modified: camel/trunk/camel-core/src/test/java/org/apache/camel/impl/ComponentConfigurationTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/test/java/org/apache/camel/impl/ComponentConfigurationTest.java?rev=1471174&r1=1471173&r2=1471174&view=diff
==============================================================================
--- camel/trunk/camel-core/src/test/java/org/apache/camel/impl/ComponentConfigurationTest.java (original)
+++ camel/trunk/camel-core/src/test/java/org/apache/camel/impl/ComponentConfigurationTest.java Tue Apr 23 22:01:41 2013
@@ -179,7 +179,7 @@ public class ComponentConfigurationTest 
             configuration.setParameter("doesNotExist", 1000);
             fail("Should have got InvalidPropertyException thrown!");
         } catch (InvalidPropertyException e) {
-            System.out.println("Got expected exception: " + e);
+            LOG.info("Got expected exception: " + e);
         }
 
         SedaEndpoint endpoint = TestSupport
@@ -198,7 +198,7 @@ public class ComponentConfigurationTest 
             configuration.setEndpointParameter(endpoint, "doesNotExist", 1000);
             fail("Should have got InvalidPropertyException thrown!");
         } catch (InvalidPropertyException e) {
-            System.out.println("Got expected exception: " + e);
+            LOG.info("Got expected exception: " + e);
         }
     }
 
@@ -221,7 +221,7 @@ public class ComponentConfigurationTest 
         assertEquals("foo", "xyz", endpoint.getFoo());
         assertEquals("bar", 5, endpoint.getBar());
 
-        System.out.println("Created endpoint " + endpoint + " on URI " + endpoint.getEndpointUri());
+        LOG.info("Created endpoint " + endpoint + " on URI " + endpoint.getEndpointUri());
 
         // lets try configure a parameter
         configuration.setEndpointParameter(endpoint, "bar", 6);
@@ -232,7 +232,7 @@ public class ComponentConfigurationTest 
             configuration.setEndpointParameter(endpoint, "doesNotExist", 1000);
             fail("Should have got InvalidPropertyException thrown!");
         } catch (InvalidPropertyException e) {
-            System.out.println("Got expected exception: " + e);
+            LOG.info("Got expected exception: " + e);
         }
 
         ComponentConfiguration badConfiguration = component.createComponentConfiguration();
@@ -249,9 +249,8 @@ public class ComponentConfigurationTest 
             badConfiguration.createEndpoint();
             fail("Should have got ResolveEndpointFailedException thrown!");
         } catch (ResolveEndpointFailedException e) {
-            System.out.println("Got expected exception: " + e);
+            LOG.info("Got expected exception: " + e);
         }
-
     }
 
     /**
@@ -275,7 +274,7 @@ public class ComponentConfigurationTest 
         assertEquals("concurrentConsumersConfig.getParameterType()", int.class,
                 concurrentConsumersConfig.getParameterType());
 
-        System.out.println(component + " has has configuration properties " + parameterMap.keySet());
+        LOG.info("{} has has configuration properties {}", component, parameterMap.keySet());
     }
 
     /**
@@ -333,7 +332,7 @@ public class ComponentConfigurationTest 
             configuration.setEndpointParameter(endpoint, "doesNotExist", 1000);
             fail("Should have got InvalidPropertyException thrown!");
         } catch (InvalidPropertyException e) {
-            System.out.println("Got expected exception: " + e);
+            LOG.info("Got expected exception: " + e);
         }
     }
 
@@ -366,7 +365,7 @@ public class ComponentConfigurationTest 
             configuration.setEndpointParameter(endpoint, "doesNotExist", 1000);
             fail("Should have got InvalidPropertyException thrown!");
         } catch (InvalidPropertyException e) {
-            System.out.println("Got expected exception: " + e);
+            LOG.info("Got expected exception: " + e);
         }
     }