You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by js...@apache.org on 2008/03/19 10:42:59 UTC

svn commit: r638763 - /activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInvocationSerializeTest.java

Author: jstrachan
Date: Wed Mar 19 02:42:58 2008
New Revision: 638763

URL: http://svn.apache.org/viewvc?rev=638763&view=rev
Log:
removed some unnecessary logging when running the tests

Modified:
    activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInvocationSerializeTest.java

Modified: activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInvocationSerializeTest.java
URL: http://svn.apache.org/viewvc/activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInvocationSerializeTest.java?rev=638763&r1=638762&r2=638763&view=diff
==============================================================================
--- activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInvocationSerializeTest.java (original)
+++ activemq/camel/trunk/camel-core/src/test/java/org/apache/camel/component/bean/BeanInvocationSerializeTest.java Wed Mar 19 02:42:58 2008
@@ -40,11 +40,11 @@
         ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray()));
         Object object = in.readObject();
         BeanInvocation actual = assertIsInstanceOf(BeanInvocation.class, object);
-        System.out.println("Received " + actual);
+        log.debug("Received " + actual);
     }
 
     public void cheese(String a, String b) {
-        System.out.println("Called with a: " + a + " b: " + b);
+        log.debug("Called with a: " + a + " b: " + b);
 
     }
 }