In a Request-Reply context, I want to log an outgoing message after it is sent. I could do something like:
from("direct:start").to("netty:tcp:...).to("log:logSent?showAll=true&multiline=true") But I would be logging the response. On the other hand, if the route is like this: from("direct:start").to("log:logSent?showAll=true&multiline=true").to("netty:tcp:...") It would be logging the message before it is sent and maybe the message was not sent because of network problems. Is there an elegant way to solve this in Camel? Thanks. -- View this message in context: http://camel.465427.n5.nabble.com/Log-sent-messages-tp5731164.html Sent from the Camel - Users mailing list archive at Nabble.com.