我正在使用asp.net mvc4
在Global.asax.cs
我有
void Application_Error(object sender, EventArgs e)
{
//We clear the response
Response.Clear();
{
Response.Redirect("~/Shared/_Error");
}
//We clear the error
Server.ClearError();
}
这为用户提供了一条很好的错误消息
但对于我作为开发人员,我想看一些关于异常的信息
我该怎么办?我可以使用一个简单的文件存储该信息吗?