10

How can I disable Quartz logging? Quartz is printing INFO statements on my console. I have tried to disable it with the following statement in log4j.properties file

log4j.logger.org.quartz=ALL, CONSOLE
Cory Kendall
  • 6,897
  • 7
  • 33
  • 62
user892871
  • 945
  • 3
  • 12
  • 26

2 Answers2

9

Possible duplicate with Disabling Log4J Output in Java.

Try this out:

  log4j.logger.org.quartz=OFF      
Community
  • 1
  • 1
Jintian DENG
  • 3,092
  • 19
  • 22
1

Adding this to my log4j.xml file worked!

 <logger name="org.quartz" additivity="false">
     <level value="ERROR"/>
 </logger>
Sahith
  • 21
  • 4