我刚刚为我的 ASP.NET 应用程序安装了 Elmah ( https://code.google.com/p/elmah/ )。是否可以在不先创建异常的情况下记录消息?
catch(Exception e)
{
Exception ex = new Exception("ID = 1", e);
ErrorSignal.FromCurrentContext().Raise(ex);
}
那么是否可以这样做:
ErrorSignal.FromCurrentContext().log("Hello I am testing Elmah");