Tagged Questions

71
votes
51answers
4k views

Is a debugger the mother of all evil?

Some say that a debugger is the mother of all evil. What do you think of this approach? I have a friend at work, a colleague, who's completely against using a debugger whatsoever. I asked him: So, …
57
votes
3answers
4k views

How to get ELMAH to work with ASP.NET MVC [HandleError] attribute?

I am trying to use ELMAH to log errors in my ASP.NET MVC application, however when I use the [HandleError] attribute on my controllers ELMAH doesn't log any errors when they occur. As I am guessing …
36
votes
25answers
6k views

What is the best logging solution for a C# .NET 3.5 project

Hi, My team is about to start a new enterprise wide ASP.NET development project, quite possibly the largest undertaken by my department so far and the largest project that I've ever worked on. I'm …
34
votes
8answers
3k views

Logging best practices

I'd like to get stories on how people are handling tracing and logging in real applications. Here are some questions that might help to explain your answer. Frameworks What frameworks do you use? …
30
votes
9answers
1k views

What’s Up with Logging in Java?

Why one would use one of the following packages instead of the other? Java Logging Commons Logging Log4j SLF4j Logback
19
votes
15answers
4k views

Code to logging ratio?

What is the ideal code to logging ratio? I'm not used to writing logs as most of the applications I've developed have not had much logging. Recently though I've changed job, and I've noticed that you …
16
votes
3answers
867 views

Naming Python loggers

In Django, I've got loggers all over the place, currently with hard-coded names. For module-level logging (i.e., in a module of view functions) I have the urge to do this. log= logging.getLogger( …
14
votes
7answers
1k views

Java Logging vs Log4J

Hi there, is it still worth to add the log4j library to a Java 5 project just to log let's say some exceptions to a file with some nice rollover settings. Or will the standard util.logging facility …
13
votes
11answers
719 views

What is a good way to pass useful state information to an exception in Java?

I noticed some confusion initially with my question. I'm not asking about how to configure a logger nor how to use a logger properly, but rather how to capture all of the information that would have …
12
votes
7answers
810 views

How should I log while using multiprocessing in Python?

Right now I have a central module in a framework that spawns multiple processes using the Python 2.6 multiprocessing module. Because it uses multiprocessing, there is module-level …
12
votes
5answers
2k views

What is the most efficient thread-safe C++ logger?

I am working on a performance critical multi-threaded application. I looked at rlog, Ace and Boost logging. I chose rlog because I read it was the fastest (when logging is disabled, it has the least …
12
votes
5answers
469 views

How to determine what log level to use?

The log levels WARN, ERROR and FATAL are pretty clear. But when is something DEBUG, and when INFO? I've seen some projects that are annoyingly verbose on the INFO level, but I've also seen code that …
11
votes
7answers
567 views

Log4net/Logging - What have you found to be useful?

I just started using Log4Net and was looking to see what you have found to be useful in your logging experiences. What types of things have you found to be useful to log; what ended up being just …
10
votes
7answers
838 views

SharePoint 2007 Log Viewer

SharePoint 2007 (WSS or MOSS) logs are not easy to read even on a large screen, has anyone come across a log viewer that is able to: Display SharePoint logs live and historical Filter the events by …
10
votes
6answers
640 views

How can I strip Python logging calls without commenting them out?

Today I was thinking about a Python project I wrote about a year back where I used logging pretty extensively. I remember having to comment out a lot of logging calls in inner-loop-like scenarios (the …

1 2 3 4 5 70 next
15 30 50 per page