Turn off Debug Logging in Quartz .Net

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 -->
上一篇:bzoj 4842 [Neerc2016]Delight for a Cat 最小费用最大流,线性规划


下一篇:使用PHPExcel实现Excel文件的导入和导出(模板导出)