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 2009/06/12 15:09:54 UTC

svn commit: r784107 - /camel/trunk/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java

Author: davsclaus
Date: Fri Jun 12 13:09:53 2009
New Revision: 784107

URL: http://svn.apache.org/viewvc?rev=784107&view=rev
Log:
CAMEL-1701: Added support for camel-spring detecting and adding InterceptorStrategy from the spring application context. Allows you to easily add interceptors that are container wide.

Modified:
    camel/trunk/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java

Modified: camel/trunk/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java?rev=784107&r1=784106&r2=784107&view=diff
==============================================================================
--- camel/trunk/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java (original)
+++ camel/trunk/components/camel-spring/src/main/java/org/apache/camel/spring/CamelContextFactoryBean.java Fri Jun 12 13:09:53 2009
@@ -239,7 +239,7 @@
         if (strategies != null && !strategies.isEmpty()) {
             for (String id : strategies.keySet()) {
                 InterceptStrategy strategy = strategies.get(id);
-                LOG.info("Using custom intercept strategy with id: " + id + " and implementation:" + strategy);
+                LOG.info("Using custom intercept strategy with id: " + id + " and implementation: " + strategy);
                 getContext().addInterceptStrategy(strategy);
             }
         }