明天的明天 永远的永远 未知的一切 我与你一起承担 ??

是非成败转头空 青山依旧在 几度夕阳红 。。。
  博客园  :: 首页  :: 管理

Turn off Debug Logging in Quartz .Net

Posted on 2015-08-25 15:50  且行且思  阅读(457)  评论(0编辑  收藏  举报

Quartz.net uses Common.Logging, so something like this in your App.config/Web.config:

 

<configSections>
    <sectionGroup name="common">
        <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" />
    </sectionGroup>
</configSections>

<common>
    <logging>
        <factoryAdapter type="Common.Logging.Simple.**youradapterhere**, Common.Logging">
            <arg key="level" value="ERROR" />
        </factoryAdapter>
    </logging>
</common>

 

<arg key="level" value="ERROR" /> <!-- add this line here -->