因为 Quartz 的日志输出太多,因此想屏蔽掉
搜索了一番,得出一下解决方案
<filter type="log4net.Filter.StringMatchFilter"> <stringToMatch value="只显示的内容" /> <acceptOnMatch value="true" /> </filter> <!-- need this here! --> <filter type="log4net.Filter.DenyAllFilter" />
给相关业务日志添加相应标记,然后与此处对应,这样就只会输出业务逻辑的日志了