Issue #1989 make camel stacktraces not get bunched up on a single line, consolidate log component settings to edex.xml

Change-Id: I58f5081a0c4e55b1b4d47f2d9eecdea6152c86e6

Former-commit-id: c0f95eb55a [formerly 81fc4fa753] [formerly c4283b0336 [formerly 65a84967aa3afcef1f287fb769fd80f9dbf25349]]
Former-commit-id: c4283b0336
Former-commit-id: a9c077f0a9
This commit is contained in:
Nate Jensen 2013-06-19 09:20:50 -05:00 committed by Gerrit Code Review
parent a0d8e1dc0c
commit afae330d8a
130 changed files with 219 additions and 197 deletions

View file

@ -165,11 +165,33 @@
<constructor-arg><ref bean="pluginSetup"/></constructor-arg>
</bean>
<bean id="stringToFile" class="com.raytheon.uf.edex.esb.camel.StringToFile"/>
<bean id="extractWMOHeader" class="com.raytheon.uf.common.util.header.WMOHeaderRemover"/>
<bean id="dataUnzipper" class="com.raytheon.uf.common.util.DataUnzipper"/>
<bean id="errorHandler" class="org.apache.camel.builder.LoggingErrorHandlerBuilder"/>
<!-- sets default settings of log component across all of edex -->
<bean id="defaultEdexLogFormatter" class="org.apache.camel.component.log.LogFormatter">
<property name="maxChars" value="0" />
<property name="showBody" value="false" />
<property name="showCaughtException" value="true" />
<property name="showStackTrace" value="true" />
</bean>
<bean id="log" class="org.apache.camel.component.log.LogComponent">
<property name="exchangeFormatter" ref="defaultEdexLogFormatter" />
</bean>
<!-- for those special times when you really want to see the content of the message -->
<bean id="showBodyLogFormatter" class="org.apache.camel.component.log.LogFormatter">
<property name="maxChars" value="0" />
<property name="showCaughtException" value="true" />
<property name="showStackTrace" value="true" />
</bean>
<bean id="log-showbody" class="org.apache.camel.component.log.LogComponent">
<property name="exchangeFormatter" ref="showBodyLogFormatter" />
</bean>
<bean id="serializationUtil" class="com.raytheon.uf.common.serialization.SerializationUtil" />
@ -248,7 +270,7 @@
<bean ref="jmsPooledConnectionFactory" method="checkPooledResources"/>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:jmsPooledResourceCheck?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:jmsPooledResourceCheck?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -264,7 +286,7 @@
<bean ref="clusteredCamelContextMgr" method="checkClusteredContexts" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:monitorClusteredContexts?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:monitorClusteredContexts?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -30,7 +30,7 @@
<bean ref="subscriptionDao" method="updateCache" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:subscription?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:subscription?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -42,7 +42,7 @@
<bean ref="ldadScriptRunner" method="runScripts" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:subscription?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:subscription?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -29,7 +29,7 @@
<bean ref="timerScriptRunner" method="runScripts" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:subscription?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:subscription?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -42,7 +42,7 @@
<bean ref="dataScriptRunner" method="runScripts" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:subscription?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:subscription?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -55,7 +55,7 @@
<bean ref="ldadScriptRunner" method="runScripts" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:subscription?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:subscription?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -55,14 +55,14 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:airep?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:airep?level=ERROR"/>
</doCatch>
</doTry>
</split>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:airep?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:airep?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -50,7 +50,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:binlightning?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:binlightning?level=ERROR"/>
</doCatch>
</doTry>
<!-- bean ref="processUtil" method="delete" / -->

View file

@ -48,7 +48,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrmos?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrmos?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -50,7 +50,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrua?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrua?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -51,14 +51,14 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ccfp?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ccfp?level=ERROR"/>
</doCatch>
</doTry>
</split>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ccfp?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ccfp?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -61,7 +61,7 @@
<bean ref="parmIdFilter" method="updateParmIdCache" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:paramIdCache?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:paramIdCache?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -76,7 +76,7 @@
</filter>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:gfeNotify?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:gfeNotify?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -92,7 +92,7 @@
<bean ref="d2dParmIdCache" method="pluginPurged" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:paramIdCache?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:paramIdCache?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -104,7 +104,7 @@
<bean ref="gridParmManager" method="processNotification" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:gridParmManager?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:gridParmManager?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -578,7 +578,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:svcBackup?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:svcBackup?level=ERROR" />
</doCatch>
</doTry>
</route>
@ -600,7 +600,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:svcBackup?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:svcBackup?level=ERROR" />
</doCatch>
</doTry>
</route>
@ -616,7 +616,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:svcBackup?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:svcBackup?level=ERROR" />
</doCatch>
</doTry>
</route>
@ -631,7 +631,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:iscDataRec?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:iscDataRec?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -649,7 +649,7 @@
<bean ref="iscSendQueue" method="addSendJobs" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:iscSendQueue?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:iscSendQueue?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -45,7 +45,7 @@
<bean ref="spcWatch" method="handleSpcWatch" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:gfeWatch?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:gfeWatch?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -56,7 +56,7 @@
<bean ref="tpcWatch" method="handleTpcWatch" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:gfeWatch?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:gfeWatch?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -85,7 +85,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:gfeIngestFilter?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:gfeIngestFilter?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -98,7 +98,7 @@
<bean ref="smartInitQueue" method="addManualInit" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:smartinit?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:smartinit?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -110,7 +110,7 @@
<bean ref="vtecChangeListener" method="handleNotification" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:vtecChangeListener?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:vtecChangeListener?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -123,7 +123,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:gfeIngestFilter?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:gfeIngestFilter?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -57,14 +57,14 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:goessounding?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:goessounding?level=ERROR"/>
</doCatch>
</doTry>
</split>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:goessounding?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:goessounding?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -98,7 +98,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:grib?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:grib?level=ERROR"/>
</doCatch>
<doFinally>
<bean ref="gribSplitter" method="clean" />

View file

@ -90,7 +90,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:grib?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:grib?level=ERROR"/>
</doCatch>
<doFinally>
<bean ref="gribSplitter" method="clean" />

View file

@ -31,21 +31,21 @@
<to uri="direct-vm:ldadmesonetIngest" />
<catch>
<exception>java.lang.Throwable</exception>
<to uri="log:ldadmesonet?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ldadmesonet?level=ERROR"/>
</catch>
</try>
<try>
<to uri="direct-vm:ldadhydroIngest" />
<catch>
<exception>java.lang.Throwable</exception>
<to uri="log:ldadhydro?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ldadhydro?level=ERROR"/>
</catch>
</try>
<try>
<to uri="direct-vm:ldadmanualIngest" />
<catch>
<exception>java.lang.Throwable</exception>
<to uri="log:ldadmanual?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ldadmanual?level=ERROR"/>
</catch>
</try>
</multicast>

View file

@ -40,7 +40,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ldadhydro?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ldadhydro?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -37,7 +37,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ldadmanual?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ldadmanual?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -53,7 +53,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ldadprofiler?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ldadprofiler?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -62,14 +62,14 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:modelsounding?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:modelsounding?level=ERROR"/>
</doCatch>
</doTry>
</split>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:modelsounding?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:modelsounding?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -61,7 +61,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:metar?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:metar?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -55,14 +55,14 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:pirep?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:pirep?level=ERROR"/>
</doCatch>
</doTry>
</split>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:pirep?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:pirep?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -48,7 +48,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:poessounding?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:poessounding?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -48,7 +48,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:profiler?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:profiler?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -83,7 +83,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:radar?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
<to uri="log:radar?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -55,14 +55,14 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:recco?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:recco?level=ERROR"/>
</doCatch>
</doTry>
</split>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:recco?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:recco?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -56,7 +56,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:redbook?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:redbook?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -65,7 +65,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:sat?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:sat?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -59,7 +59,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:sfcobs?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:sfcobs?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -148,7 +148,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:shef?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:shef?level=ERROR" />
</doCatch>
</doTry>
</route>
@ -167,7 +167,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:shef?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:shef?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -58,14 +58,14 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:taf?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:taf?level=ERROR"/>
</doCatch>
</doTry>
</split>
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:taf?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:taf?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -50,7 +50,7 @@
<bean ref="autoFaxDao" method="updateCache" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:autoFax?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:autoFax?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -86,7 +86,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:text?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:text?level=INFO"/>
</doCatch>
</doTry>
</route>
@ -109,7 +109,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:text?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:text?level=INFO"/>
</doCatch>
</doTry>
</route>
@ -134,7 +134,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:text?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:text?level=INFO"/>
</doCatch>
</doTry>
</route>
@ -167,7 +167,7 @@
<to uri="jms-generic:queue:textPurgeRequest" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:purge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:purge?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -179,7 +179,7 @@
<bean ref="autoFaxManager" method="processEvent" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:autoFax?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:autoFax?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -196,7 +196,7 @@
<bean ref="textVersionPurge" method="addAfosIdsToPurge"/>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:purge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:purge?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -206,7 +206,7 @@
<bean ref="textVersionPurge" method="purgeAfosIds"/>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:purge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:purge?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -49,7 +49,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:textlightning?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:textlightning?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -78,7 +78,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:warning?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
<to uri="log-showbody:warning?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -62,7 +62,7 @@
</filter>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:practiceActiveTable?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:practiceActiveTable?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -92,7 +92,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:practiceActiveTable?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:practiceActiveTable?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -16,7 +16,7 @@
<bean ref="activeTableSrv" method="vtecArrived" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:activeTable?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:activeTable?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -30,7 +30,7 @@
</multicast>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:practiceActiveTable?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:practiceActiveTable?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -80,7 +80,7 @@
<bean ref="fetchATSrv" method="addSite" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:fetchATSrv?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:fetchATSrv?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -24,7 +24,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:archivePurge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:archivePurge?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -36,7 +36,7 @@
</multicast>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:cpgSrv?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:cpgSrv?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -50,7 +50,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:cpgSrv?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:cpgSrv?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -68,7 +68,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:BandwidthManagerProcess?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:BandwidthManagerProcess?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -35,7 +35,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:purge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:purge?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -44,7 +44,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:metaDataProcess?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:metaDataProcess?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -75,7 +75,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:metaDataPurge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:metaDataPurge?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -20,7 +20,7 @@
<bean ref="oupAckMgr" method="processAck" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:oup?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:oup?level=INFO"/>
</doCatch>
</doTry>
</route>
@ -43,7 +43,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:manual?level=ERROR&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log-showbody:manual?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -34,7 +34,7 @@
<bean ref="distributionSrv" method="route" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:distribution?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:distribution?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -45,7 +45,7 @@
<bean ref="handleoupDistributionSrv" method="route" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:distribution?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:distribution?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -56,7 +56,7 @@
<bean ref="radarserverDistributionSrv" method="route" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:distribution?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:distribution?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -69,7 +69,7 @@
<bean ref="radarserverDistributionSrv" method="refresh" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:refreshDistribution?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:refreshDistribution?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -21,7 +21,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:grid-staticdata?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:grid-staticdata?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -43,7 +43,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:repack?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:repack?level=ERROR" />
</doCatch>
</doTry>
</route>
@ -56,7 +56,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:archive?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:archive?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -26,7 +26,7 @@
<bean ref="metarToHMDBPurger" method="purgeHMDBRpt" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:metartohmdb?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:metartohmdb?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -51,7 +51,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:dpa?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:dpa?level=INFO"/>
</doCatch>
</doTry>
</route>

View file

@ -27,7 +27,7 @@
<bean ref="alarmSrv" method="execute" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:alarmWhfs?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:alarmWhfs?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -24,7 +24,7 @@
<bean ref="qpeGenService" method="processArealQpe" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:arealQpeGen?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:arealQpeGen?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -47,7 +47,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:warning?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:warning?level=INFO"/>
</doCatch>
</doTry>
</route>

View file

@ -24,7 +24,7 @@
<bean ref="dqcPreprocService" method="runDQCPreproc" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:dqcPreprocessor?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:dqcPreprocessor?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -27,7 +27,7 @@
<bean ref="floodseqSrv" method="execute" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:floodseq?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:floodseq?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -24,7 +24,7 @@
<bean ref="mpeRucFreezingLevel" method="processMpeRuc" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:frzLvlProcessor?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:frzLvlProcessor?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -35,7 +35,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:dhr?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:dhr?level=INFO"/>
</doCatch>
</doTry>
</route>
@ -56,7 +56,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:dhr?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:dhr?level=INFO"/>
</doCatch>
</doTry>
</route>

View file

@ -27,7 +27,7 @@
<bean ref="ihfsDbPurge" method="execute" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ihfsDbPurge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ihfsDbPurge?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -27,7 +27,7 @@
<bean ref="logFilePurger" method="execute" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:logFilePurger?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:logFilePurger?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -22,7 +22,7 @@
<bean ref="mpeFieldGenService" method="runHourlyMpe" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:mpeFieldGen?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:mpeFieldGen?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -30,7 +30,7 @@
<bean ref="mpeHpeFilePurger" method="execute" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:mpeHpeFilePurge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:mpeHpeFilePurge?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -29,7 +29,7 @@
<bean ref="mpeFieldGenService" method="process" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:mpeFieldGen?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:mpeFieldGen?level=ERROR"/>
</doCatch>
</doTry>
<bean ref="serializationUtil" method="transformToThrift" />

View file

@ -27,7 +27,7 @@
<bean ref="pdcSrv" method="execute" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:pointData?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:pointData?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -24,7 +24,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:q2File?level=INFO&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:q2File?level=INFO"/>
</doCatch>
</doTry>
</route>

View file

@ -21,7 +21,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:satPre?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:satPre?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -54,7 +54,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:acars?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:acars?level=ERROR"/>
</doCatch>
</doTry>
<!-- bean ref="processUtil" method="delete" / -->

View file

@ -60,7 +60,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:acarssounding?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:acarssounding?level=ERROR"/>
</doCatch>
</doTry>
</split>

View file

@ -56,7 +56,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrascat?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrascat?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -49,7 +49,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrhdw?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrhdw?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -49,7 +49,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrmthdw?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrmthdw?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -48,7 +48,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrncwf?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrncwf?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -56,7 +56,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrquikscat?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrquikscat?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -50,7 +50,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrsigwx?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrsigwx?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -56,7 +56,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:bufrssmi?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:bufrssmi?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -36,7 +36,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:cwa?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:cwa?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -18,7 +18,7 @@
<bean ref="cwatGenerator" method="generate" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:cwat?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:cwat?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -34,7 +34,7 @@
<bean ref="ffmpGenerator" method="generate" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ffmp?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ffmp?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -18,7 +18,7 @@
<bean ref="fogGenerator" method="generate" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:fog?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:fog?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -21,7 +21,7 @@
<bean ref="fssObsGenerator" method="generate" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:fssobs?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:fssobs?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -40,7 +40,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ldadmesonet?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ldadmesonet?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -41,7 +41,7 @@
<bean ref="loctablesIngest" method="processFile" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:loctables?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:loctables?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -50,7 +50,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:lclstrmrpt?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:lclstrmrpt?level=ERROR"/>
</doCatch>
</doTry>
</pipeline>

View file

@ -15,7 +15,7 @@
<to uri="jms-generic:queue:external.dropbox?destinationResolver=#qpidDurableResolver" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:manual?level=ERROR&amp;showCaughtException=true&amp;showStackTrace=true" />
<to uri="log-showbody:manual?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -66,7 +66,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:warning?level=ERROR&amp;showBody=false" />
uri="log:warning?level=ERROR" />
</doCatch>
</doTry>
</route>

View file

@ -37,7 +37,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:crimss?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:crimss?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -37,7 +37,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:nucaps?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:nucaps?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -53,7 +53,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:viirs?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:viirs?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -18,7 +18,7 @@
<bean ref="preciprateGenerator" method="generate" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:precipRate?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:precipRate?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -51,7 +51,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:qc?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:qc?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -18,7 +18,7 @@
<bean ref="qpfGenerator" method="generate" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:qpf?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:qpf?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -48,7 +48,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:sat?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:sat?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -36,7 +36,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:scanCpgSrv?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:scanCpgSrv?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -36,7 +36,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:svrwx?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:svrwx?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -36,7 +36,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:tcg?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:tcg?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -36,7 +36,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:tcs?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:tcs?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -50,7 +50,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:vaa?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:vaa?level=ERROR"/>
</doCatch>
</doTry>
</pipeline>

View file

@ -18,7 +18,7 @@
<bean ref="vilGenerator" method="generate" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:vil?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:vil?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -33,7 +33,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:purge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:purge?level=ERROR" />
</doCatch>
</doTry>
</route>
@ -60,7 +60,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:purge?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true" />
uri="log:purge?level=ERROR" />
</doCatch>
</doTry>
</route>
@ -72,4 +72,4 @@
<constructor-arg ref="clusteredpurgeContext" />
</bean>
</beans>
</beans>

View file

@ -17,7 +17,7 @@
<bean ref="siteAwareRegistry" method="handleMessage" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:siteActivation?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:siteActivation?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -45,7 +45,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:stats?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
uri="log:stats?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -57,7 +57,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:stats?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
uri="log:stats?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -69,7 +69,7 @@
<doCatch>
<exception>java.lang.Throwable</exception>
<to
uri="log:stats?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
uri="log:stats?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -38,7 +38,7 @@
<bean ref="TafQueueManager" method="startManager" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:tafSendQueue?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:tafSendQueue?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -48,7 +48,7 @@
<bean ref="TafQueueManager" method="queueChanged" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:tafSendQueue?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:tafSendQueue?level=ERROR"/>
</doCatch>
</doTry>
</route>

View file

@ -44,7 +44,7 @@
</pipeline>
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ncInventory?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ncInventory?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -55,7 +55,7 @@
<bean ref="NcInventoryMngr" method="manageInventory" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ncInventory?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ncInventory?level=ERROR"/>
</doCatch>
</doTry>
</route>
@ -66,7 +66,7 @@
<bean ref="NcInventoryUpdater" method="purgePlugin" />
<doCatch>
<exception>java.lang.Throwable</exception>
<to uri="log:ncInventory?level=ERROR&amp;showBody=false&amp;showCaughtException=true&amp;showStackTrace=true"/>
<to uri="log:ncInventory?level=ERROR"/>
</doCatch>
</doTry>
</route>

Some files were not shown because too many files have changed in this diff Show more