我想有一個全局點來處理asp.mvc3應用程序中的所有異常。 我創建了新的應用程序,使用nuget添加了elmah並實現了ElmahCustomLogger類。我也在web.config elmah部分註冊了這個自定義記錄器。Elmah自定義記錄器不工作
出於某種原因ElmahCustomLogger ::登錄方法被稱爲永遠不會(我把那裏brakepoint)
public class ElmahCustomLogger : ErrorLog
{
public override string Log(Error error)
{
throw new NotImplementedException();
}
public override ErrorLogEntry GetError(string id)
{
throw new NotImplementedException();
}
public override int GetErrors(int pageIndex, int pageSize, IList errorEntryList)
{
throw new NotImplementedException();
}
}