1

In my Apache Camel/Spring Boot application console I see tons of camel tracing starting with below. According to this camel.springboot.tracing=false should disable it but it doesn't work. Looking for the right way to disable tracing.

[http-nio-0.0.0.0-8080-exec-1] INFO org.apache.camel.Tracing
Prashant S
  • 349
  • 4
  • 14

2 Answers2

0

If you are using logback.xml,

give a try on this:

<logger name="org.apache.camel" level="Error" additivity="false">
        <appender-ref ref="CONSOLE"/>
        <appender-ref ref="FILE"/>
</logger>

If log4j.properties then:

log4j.org.apache.camel=Error
Arun Sai Mustyala
  • 1,736
  • 1
  • 11
  • 27
0

Issue resolved by removing trace="true" from <camel:camelContext trace="true">

Prashant S
  • 349
  • 4
  • 14