Details
-
Task
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
Unknown
Description
The documentation about error handling here: https://camel.apache.org/staging/manual/latest/error-handler.html, shows an example like:
RouteBuilder builder = new RouteBuilder() { public void configure() { // use logging error handler errorHandler(loggingErrorHandler("com.mycompany.foo")); // here is our regular route from("seda:a").to("seda:b"); } };
But the loggingErrorHandler as been removed as deprecated (CAMEL-4763)