That's simple:
You have simply to enable the tracing:
context.setTracing(true);
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() throws Exception {
context.setTracing(true);
onException(Exception.class)
.handled(false)
.to("mock:errorHandler")
.logStackTrace(true);
from("direct:start")
.to("bean:bean1")
.to("bean:bean2")
.to("mock:end");
}
};
}
... and check the log...
Best,
Christian
On Tue, Dec 18, 2012 at 8:31 PM, semiosis <[email protected]> wrote:
> ve any other thoughts on how to further
--