You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Original issue 358 created by soi-toolkit on 2013-11-09T08:50:25.000Z:
Logging using a org.soitoolkit.commons.mule.log.LogTransformer in a catch- or rollback exception strategy does not work, no log is written due to this code:
@Override
public Object transformMessage(MuleMessage message, String outputEncoding) throws TransformerException {
try {
// Skip logging if an error has occurred, then the error is logged by an error handler
ExceptionPayload exp = message.getExceptionPayload();
if (exp != null) {
log.debug("Skip logging message, exception detected! " + exp.getException().getMessage());
return message;
}
Suggest we either make the behaviour configurable - or re-implement the logtransformer for use with exception-strategies.
The text was updated successfully, but these errors were encountered:
Original issue 358 created by soi-toolkit on 2013-11-09T08:50:25.000Z:
Logging using a org.soitoolkit.commons.mule.log.LogTransformer in a catch- or rollback exception strategy does not work, no log is written due to this code:
Suggest we either make the behaviour configurable - or re-implement the logtransformer for use with exception-strategies.
The text was updated successfully, but these errors were encountered: