vote up 2 vote down star

I'm working on an ASP.NET web application, written using Visual Basic, and I'm trying to track down an error message that I'm getting.

I'd like to get it to log the exception to a file (or the event log) so I can see it, as the error only occurs on the production server, and not on the development environment (therefore VS isn't installed on there...).

Does anyone have any thoughts as to best practice as to how to do this ?

Cheers

flag

6 Answers

vote up 3 vote down check

Not sure if it is a "best practice" but the most common way is using log4net.

link|flag
Sold, looking through log4net right now. Cheers – Old Nick Apr 7 at 7:14
vote up 1 vote down

Use log4net or Enterprise Library Logging. I'd also add an http module which logs all unhandled errors (Filter out 404 errors).

When doing a global error handler, you will probally want to develope some way to know that you've already logged an error. This happens if you want to log an error closer to the source of the error allowing you to include more context into what went wrong.

In my case when I log any errors, I add an item tot he Data collection on an exception. My global error handler then inspects all exception objects verifying we haven't logged any of them.

link|flag
vote up 0 vote down

Messy: when it comes up, catch it (assuming you can?) and drop as much data out to the PAGE as you can. Put it in an HTML comment so the user can't see it. Something like:

lblError.Text = (put the formatted Exception info here);

< ! -- < asp:label id=lblError /> -->

Almost as messy: look up the Trace.WriteLine kinda stuff. You can enable tracing in ASP.NET which allows you to go to a specific page (_trace.axd?) and get a dump of all the messages for that page load. I've not really used it, but it does work.

A little less messy (as this appears to be a temporary thing): use Trace.WriteLine to output stuff, and run debugview (from microsoft) on the server, if you have physical access. You can then capture this debug output (the core win32 api on this is OutputDebugString - I think the .net call is Debug.WriteLine)

Nicer: Log4Net. Set it up so you can use it anywhere. Put it on "ERROR" most of the time, but in this case, use "DEBUG" until you find the solution.

I'd go for 3, then 4. Or 3 now, and 4 the next time you clean up the codebase a little.

:)

link|flag
vote up 0 vote down

If you can get hold of the global.asax for the site - Then in the 'Application_Error' section of the Global.asax do something like this

Dim ex As New Exception() ex = Server.GetLastError().GetBaseException() Dim g As New generalfunctions ASendEmailFunction(ex.Message.ToString() & ex.Source.ToString() & ex.StackTrace.ToString())

This will get every error of the application and send you all the details - You need to create that ASendEmailFunction() that just sends you an email with the contents

(You could do it alot better than this but I'm typing this directly into this box)

link|flag
vote up 0 vote down

The most common used libraries for logging are the enterprise library logging block or log4Net: -Enterprise Library Logging Block article: http://www.codeproject.com/KB/architecture/GetLoggingWithEntLib.aspx -Log4Net: http://www.ondotnet.com/pub/a/dotnet/2003/06/16/log4net.html

Cheers

link|flag
vote up 0 vote down

If you're running ASP.NET 2.0 or above, the best thing is to do nothing. By default, ASP.NET Health Monitoring will log exceptions to the Application event log. Just use eventvwr.exe and look for warnings from "ASP.NET". The information it logs is very complete.

When I say "do nothing", I mean don't catch exceptions if you're only going to log them. You can set a custom error page if you like, but make sure the exceptions are not caught at the top level.

link|flag
Thanks for the suggestion, however, I need more detail than the event log view supplies. Thanks anyway – Old Nick Apr 7 at 7:12
Out of curiosity, what more could you need? But see msdn.microsoft.com/en-us/library/…, and try to raise a web event derived from WebErrorEvent (see msdn.microsoft.com/en-us/library/…). – John Saunders Apr 7 at 10:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.