This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch CAMEL-13505 in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/CAMEL-13505 by this push: new 4cc83af CAMEL-13505: A new tracer 4cc83af is described below commit 4cc83af236e4c1026077f3ce8bc517c74b64d454 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Mon Jul 29 07:43:28 2019 +0200 CAMEL-13505: A new tracer --- MIGRATION.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MIGRATION.md b/MIGRATION.md index 24e35e3..aad73f1 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -122,6 +122,8 @@ We have also renamed `camel-jetty9` to `camel-jetty`. A new tracer has been implemented and the old tracer has been removed. The new tracer logs messages at the `org.apache.camel.Tracing` logger name which is hardcoded. The format of the output is also updated to make it better. The tracer can be customized. +In JMX the `BacklogTracer` is no longer enabled by default, which you need to enable by setting `backlogTracing=true` on CamelContext. The backlog tracer and tracer are not the same. The former is used for capturing a backlog of traced messages which you can poll via JMX (needed for 3rd party tooling), where as tracer is writing to the log. Neither of them are enabled by default, and they must be enabled to be in use. + ### <setHeader> and <setProperty> in XML DSL We have renamed the attribute `headerName` and `propertyName` in the XML DSL for the `<setHeader>` and `<setProperty`> EIPs, to be just `name`.