Can someone tell me how to turn off DEBUG information in log4j? this is my log4j2.properties
log4j.rootLogger=INFO, stdout
log4j.logger.org.apache.camel=INFO
appender.console.type = Console
appender.console.name = console
appender.console.layout.type = PatternLayout
appender.console.layout.pattern = %d [%-15.15t] %-5p %-30.30c{1} - %m%n
rootLogger.level = INFO
rootLogger.appenderRef.console.ref = console
thanks for your help!