如何在elmah主题行中实现机器名称?

时间:2013-03-14 06:03:55

标签: asp.net asp.net-mvc elmah elmah.mvc

我想在ELMAH主题行中携带机器名称。因为在开发环境中想要保持从哪个机器错误来的轨道。所以我希望实现主题行与正确的机器名称。我该怎么做?

<elmah>
    <errorMail name="exceptionMail" 
       from="devsupport@abc.co.in" 
       to="devsupport@abc.co.in" 
       async="true"  
       subject="Error log from [should come machine name here]" 
       smtpPort="0" 
       useSsl="true"/>
    <security allowRemoteAccess="yes" />
</elmah>

1 个答案:

答案 0 :(得分:4)

据我所知,单独的配置无法做到这一点 - 你必须编写一些代码来处理这个要求。

另一方面 - 编写该代码似乎非常简单明了。

请参阅Scott Mitchell关于如何操作的博文Customizing ELMAH’s Error Emails