我刚刚为我的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");