Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
11answers
2k views

General Exception Handling Strategy for .NET

I’m used to having try/catch blocks in every method. The reason for this is so that I can catch every exception at the point of infraction and log it. I understand, from my reading and conversations ...
2
votes
1answer
130 views

Elmah: How to get JSON HTTP request body from error report

I'm using Elmah to log exceptions. Elmah is great at logging request bodies if the request is a Form-based request (i.e. Content-Type: application/x-www-form-urlencoded), but with JSON based requests ...
2
votes
1answer
108 views

Is it possible to change Enterprise Library logging listener setting programmatically?

I'm using Ent Lib 5, and I need to be able to update the databaseInstanceName property of Microsoft.Practices.EnterpriseLibrary.Logging.Database.FormattedDatabaseTraceListener listener. The ...
2
votes
3answers
2k views

ELMAH - Exception Logging without having HttpContext

I tried this solution with Elmah.XmlFileErrorLog but I'm getting following exception System.ArgumentNullException was unhandled by user code Message="Value cannot be null.\r\nParameter name: ...
2
votes
2answers
2k views

Problem with java.util.logging and Lock file

I have an application that scans a set of files. And this scanning take place parallely. I mean if I upload 5 files, five process will be created and start executing the job parallely. Now For logging ...
1
vote
3answers
303 views

What is the most efficient and performant logging solution for ASP.NET?

I want to add logging to the ASP.NET 2.0 web site that I've inherited from a previous developer. The application just spits out exceptions when they occur, and there's no record of financial ...
1
vote
5answers
191 views

is logging an exception on the code of the Exceptions base class a good design approach?

some friends just finished the implementation of an app and they use Custom Exceptions. something that took my attention is that when a custom exception was raised they logged the exception in the ...
0
votes
1answer
45 views

My exception logging aspect is logging the same exception twice

I'm writing a stand alone application, that has to start up and be left running unattended for long periods of time. Rather than have exceptions bring it to a halt, it needs to log the exception with ...
0
votes
0answers
11 views

Exception not writting line number

we have a error log mechnaism wherein we enter the details including StackTrace. The issue is on local system we get line number, but on live server it isn't. plz help thanks in advance
0
votes
1answer
208 views

How do you centralize ELMAH logs

At my works we produce websites like they are going out of fashion (ie a lot of sites per year) I want to install ELMAH on all of these as company practice and then log everything centrally for ...
0
votes
1answer
153 views

coldfusion application.cfm error log not logging all errors

I have a Coldfusion application which uses a tag in the application.cfm file. This tag seems to be randomly logging errors. There are errors in the Coldfusion error log. I have been able to cause ...
0
votes
1answer
384 views

Try/Catch in Global.asax while logging errors to db needed?

So I handle all exceptions in my project within my Global.asax page. For example, on a random page I could have: Protected Sub SomeFunction() Try 'do something here ...
0
votes
1answer
151 views

How to build Exception Logger system in PHP that can have different Logger implementations e.g. File/DB and is testable

I'm building a PHP library that throws various custom Exceptions when it encounters errors. I need to log those exceptions and provide various implementations of the Logger so they could be logged in ...
0
votes
3answers
524 views

Most Efficient Way to log Invocation Parameters For a Method in case of an exception

C# Development: I am calling a webservice/other methods in a try catch block with different parameters some of which may be custom objects. Please comment on the best way to log the parameters in a ...