use of org.apache.camel.impl.DoCatchRouteNode in project camel by apache.
the class TraceInterceptor method traceDoCatch.
private void traceDoCatch(TracedRouteNodes traced, Exchange exchange) throws Exception {
if (traced.getLastNode() != null) {
traced.addTraced(new DefaultRouteNode(traced.getLastNode().getProcessorDefinition(), traced.getLastNode().getProcessor()));
}
traced.addTraced(new DoCatchRouteNode());
// log and trace so we have the from -> doCatch event as well
logExchange(exchange);
traceExchange(exchange);
traced.addTraced(new DefaultRouteNode(node, super.getProcessor()));
}
Aggregations