Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable quartz logging

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
like image 971
user892871 Avatar asked Jan 20 '13 03:01

user892871


2 Answers

Possible duplicate with Disabling Log4J Output in Java.

Try this out:

  log4j.logger.org.quartz=OFF      
like image 161
Jintian DENG Avatar answered Sep 19 '22 14:09

Jintian DENG


Adding this to my log4j.xml file worked!

 <logger name="org.quartz" additivity="false">
     <level value="ERROR"/>
 </logger>
like image 33
Sahith Avatar answered Sep 21 '22 14:09

Sahith