Is it necessary to log http 404 exceptions

bo7r

New Member
I have below code in global application error event. If there is any invalid url, this event gets fired. Is it required to log http 404 errors.\[code\]void Application_Error(object sender, System.EventArgs e){Exception lastException = HttpContext.Current.Server.GetLastError();//log exception}\[/code\]
 
Back
Top