我正在尝试使用 NLog条件来过滤在特定时间未生成的消息
以下是我的样本
<logger name="*" minlevel="Info" writeTo="InfoMail" >
<when condition="starts-with('${date:format=hh}', '01')" action="Ignore"/>
</logger>
但是,Nlog 似乎无法接收“${date:format=hh}”,即使消息是在 1 点生成的,我仍然会收到电子邮件。有没有办法解决这个问题?