Commit in servicemix/base/src/main/java/org/servicemix/jbi/nmr/flow/seda on MAIN
SedaQueue.java+3-31.6 -> 1.7
catch all exceptions whilst routing messages 

servicemix/base/src/main/java/org/servicemix/jbi/nmr/flow/seda
SedaQueue.java 1.6 -> 1.7
diff -u -r1.6 -r1.7
--- SedaQueue.java	27 Jul 2005 07:35:20 -0000	1.6
+++ SedaQueue.java	22 Sep 2005 12:34:43 -0000	1.7
@@ -36,7 +36,7 @@
 /**
  * A simple Straight through flow
  * 
- * @version $Revision: 1.6 $
+ * @version $Revision: 1.7 $
  */
 public class SedaQueue extends BaseLifeCycle implements Work {
     private static final Log log = LogFactory.getLog(SedaQueue.class);
@@ -206,8 +206,8 @@
                         log.debug(this + " enqueued packet: " + packet);
                     }
                 }
-                catch (MessagingException e) {
-                    log.error(this + " Got messaging exception processing " + packet, e);
+                catch (Throwable e) {
+                    log.error(this + " Gor error processing " + packet, e);
                 }
             }
         }
CVSspam 0.2.8



Reply via email to