我在web.config中有以下Nlog配置部分(修改为仅显示相关信息)
<nlog>
<targets async="true">
<target name="mail" type="Mail"
body="${date:format=yyyy-MM-dd HH\:mm\:ss} - ${level} [${logger}] - ${message} ${newline}${newline}${event-context:item=OtherInfo}${newline}${newline}${exception:maxInnerExceptionLevel=2:format=ToString}${newline}${newline}"
subject="[${machinename}] ${logger}"
to="mail@domain.com" encoding="UTF-8" from="anotheremail@domain.com" smtpServer="" enableSsl="true" smtpAuthentication="Basic"
/>
</targets>
<targets>
<target name="mailsync" type="Mail" body="${date:format=yyyy-MM-dd HH\:mm\:ss} - ${level} [${logger}] - ${message} ${newline}${newline}${event-context:item=OtherInfo}${newline}${newline}${exception:maxInnerExceptionLevel=2:format=ToString}${newline}${newline}" subject="[${machinename}] ${logger}"
to="mail@domain.com" encoding="UTF-8" from="anotheremail@domain.com" smtpServer="" enableSsl="true" smtpAuthentication="Basic"
/>
</targets>
<rules>
<logger name="*" level="Error" writeTo="mail" />
</rules>
</nlog>
我正在通过Application_Start中的代码更新配置,
var config = LogManager.Configuration;
const string targetName = "mail";
var wrapper = (AsyncTargetWrapper) config.FindTargetByName(targetName);
wrapper.WrappedTarget.SmtpServer = "hostname";
wrapper.WrappedTarget.SmtpUserName = "username";
wrapper.WrappedTarget.SmtpPassword = "password";
config.RemoveTarget(targetName);
config.AddTarget(targetName, wrapper);
LogManager.Configuration = config;
但是,当我记录任何错误时,不会发送电子邮件。我有一个额外的文件目标(未在代码片段中显示),其中包含错误消息。这告诉我错误被记录,但不知何故不通过电子邮件发送。
如果不是通过代码更新配置,如果我对web.config中的值进行硬编码,则会发送电子邮件。我已经验证我通过代码使用的smtp值是有效的。
我在SO上搜索了许多类似的问题,但我还没有找到一个提到适合我的解决方案。
修改
根据Xharze的回答,我启用了异常,内部日志记录,并且在完成更改后我也输出了目标的值。内部日志显示有关MailAdrress
格式不正确的例外情况。所以我检查了接受电子邮件地址的所有目标值,我发现了问题。目标的from
属性接受电子邮件地址,而我正在为其提供显示名称!
答案 0 :(得分:2)
您可以尝试启用throw异常和内部日志,然后发布吗?它可能会提供更多信息。请参阅github.com/NLog/NLog/wiki/Logging-troubleshooting。