Merge branch 'master' of git.springsource.org:spring-integration/spring-integration

This commit is contained in:
Oleg Zhurakousky
2010-09-22 19:08:30 -04:00

View File

@@ -249,11 +249,9 @@ public class ChannelPublishingJmsMessageListener extends MessagingGatewaySupport
finally {
producer.close();
}
} catch (RuntimeException e) {
//e.printStackTrace();
logger.error("Problems generating JMS Reply Message from<EFBFBD>the: " + replyResult + "\n" +
" Typical couses is that Object from which the JMS Message is created or some members of its " +
"hierarchy are not Serializable", e);
}
catch (RuntimeException e) {
logger.error("Failed to generate JMS Reply Message from: " + replyResult, e);
throw e;
}
}