2

我需要找到一种方法来防止在发生异常时记录大型有效负载。当连接超时时,我正在通过 FTP 发送大文件(大约 30MB),记录了整个有效负载内容。

[01-10-2012 10:32:59:059] ERROR exception.DefaultMessagingExceptionStrategy:
********************************************************************************
Message               : Connection timed out (java.net.ConnectException)
Code                  : MULE_ERROR--2
--------------------------------------------------------------------------------
Exception stack is:
1. Connection timed out (java.net.ConnectException)
  java.net.PlainSocketImpl:-2 (null)
2. Connection timed out (java.net.ConnectException) (org.mule.transport.ConnectException)
  org.mule.transport.ftp.FtpConnector:556 (http://www.mulesoft.org/docs/site/current3/apidocs/org/mule/transport/ConnectExcepti
on.html)
--------------------------------------------------------------------------------
Root Exception stack trace:
java.net.ConnectException: Connection timed out
        at java.net.PlainSocketImpl.socketConnect(Native Method)
        at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
        at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    + 3 more (set debug level logging or '-Dmule.verbose.exceptions=true' for everything)
********************************************************************************

[01-10-2012 10:32:59:059] ERROR exception.DefaultMessagingExceptionStrategy: Message being processed is: 
+++++++++++LARGE_PAYLOAD_CONTENT++++++++++++++
.
.
.
.
.
4

3 回答 3

3

对于 Mule 3.3.0,唯一的选择是将记录器设置org.mule.exception.DefaultMessagingExceptionStrategyFATAL(通过 Log4j 配置)。

这已在 Mule 3.3.1 / 3.4.0-SNAPSHOT 中修复:现在仅当记录器org.mule.exception.DefaultMessagingExceptionStrategy设置为时才会记录完整的消息负载DEBUG

于 2012-10-16T16:36:44.850 回答
1

尝试将 mule.verbose.exceptions 设置为 false

-Dmule.verbose.exceptions=false

于 2012-10-16T13:47:38.443 回答
0

这已针对 3.3.1(仅限 EE)修复:http: //www.mulesoft.org/jira/browse/MULE-6268

于 2012-10-16T19:23:16.560 回答