You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2015/10/27 12:42:27 UTC

[jira] [Resolved] (CAMEL-9259) enableTrace of the Main class doesn't work

     [ https://issues.apache.org/jira/browse/CAMEL-9259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen resolved CAMEL-9259.
--------------------------------
    Resolution: Fixed
      Assignee: Claus Ibsen

> enableTrace of the Main class doesn't work
> ------------------------------------------
>
>                 Key: CAMEL-9259
>                 URL: https://issues.apache.org/jira/browse/CAMEL-9259
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-core
>    Affects Versions: 2.15.3
>            Reporter: Charles Moulliard
>            Assignee: Claus Ibsen
>            Priority: Minor
>             Fix For: 2.17.0, 2.16.1, 2.15.5
>
>
> The enableTrace() method of the Camel Main class doesn't work.
> When we setup the code as such
> {code}
>     public static void main(String... args) throws Exception {
>         Main main = new Main();
>         main.enableHangupSupport();
>         main.addRouteBuilder(new MyRouteBuilder());
>         main.enableTrace();
>         main.run(args);
> {code}
> and launch the Main class, than the messages reported by the route in the log are not traced at all.
> If we debug, we can see that there is not CamelContext object when this method of the MainSupport class is called
> {code}
>     public void enableTrace() {
>         this.trace = true;
>         for (CamelContext context : camelContexts) { // EMPTY
>             context.setTracing(true);
>         }
>     }
> {code}
> The workaround is to enable the tracing within the route definition
> {code}
>     public void configure() {
>         getContext().setTracing(true);
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)