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
                Possible duplicate with Disabling Log4J Output in Java.
Try this out:
  log4j.logger.org.quartz=OFF      
                        Adding this to my log4j.xml file worked!
 <logger name="org.quartz" additivity="false">
     <level value="ERROR"/>
 </logger>
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With