Logging refers to the concept of saving information about the current whereabouts of a program for later.

learn more… | top users | synonyms (1)

238
votes
60answers
22k views

Is a debugger the mother of all evil? [closed]

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, ...
235
votes
6answers
29k 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 ...
152
votes
10answers
18k 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? ...
141
votes
34answers
39k views

What is the best logging solution for a C# .NET 3.5 project? [closed]

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 looking ...
77
votes
17answers
2k views

What do we log and why do we log it? [closed]

This has been bugging me for quite some time. Reading various questions on SO, blogs and listening to colleagues, I keep hearing how important "logging" is. How various logging frameworks stack up ...
74
votes
3answers
3k views

What are the best Haskell libraries to operationalize a program?

If I'm going to put a program into production, there are several things I need that program to do in order to consider it "operationalized" – that is, running and maintainable in a measurable and ...
69
votes
17answers
27k views

Best logging framework for native C++?

I'm looking for logging framework for C++ project. My best shot was log4cxx, but it seems that it's abandoned project, with development stopped ~4 years ago, with only one update in last 4-5 years. ...
68
votes
8answers
4k 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
54
votes
9answers
27k views

What happened to console.log in IE8?

According to this post it was in the beta, but it's not in the release?
53
votes
26answers
25k views

What is your .NET logging framework of choice? [closed]

There are many Logging frameworks for .NET, from simple Debug.WriteLine and Trace to Log4Net, Logging application block, NLOg and others. Which one do you use or recommend, and why? Also, which one ...
52
votes
27answers
1k views

How do you reproduce bugs that occur sporadically?

We have a bug in our application that does not occur every time and therefore we don't know its "logic". I don't even get it reproduced in 100 times today. Disclaimer: This bug exists and I've seen ...
47
votes
10answers
13k views

How can I make the Python logging output to be colored?

Some time ago I saw a Mono application with colored output, probably because of it's log system, because all the messages were standardized. Now, Python has the logging module, and it let you specify ...
45
votes
8answers
7k views

Most useful NLog configurations

What are the best or most useful configurations for logging with NLog? (These can be simple or complex, as long as they're useful.) I'm thinking of examples like automatically rolling over log files ...
45
votes
7answers
30k views

Android logging

I am having lots of logging statements to debug for example. Log.v(TAG, "Message here"); Log.w(TAG, " WARNING HERE"); while deploying this application on device phone i want to turn off the verbose ...
41
votes
9answers
2k views

Is it a good practice to have logger as a singleton?

I had a habit to pass logger to constructor, like: public class OrderService : IOrderService { public OrderService(ILogger logger) { } } But that is quite annoying, so I've used it a ...
37
votes
9answers
6k 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 ...
34
votes
9answers
7k views

How can I find the method that called the current method?

When logging in C#, how can I learn the name of the method that called the current method? I know all about System.Reflection.MethodBase.GetCurrentMethod(), but I want to go one step beneath this in ...
34
votes
15answers
5k views

Preferred logging infrastructure for .Net

What is your preferred logging infrastructure for .Net - NLog, log4net, other? Please, specify why you would use one vs. another (pros and cons). Edit: I find it really difficult to "accept" an ...
33
votes
3answers
23k views

How to log Postgres SQL queries?

Can anyone tell me how to enable logging of all SQL executed by Postgres (8.3)? Thanks! Edited (more info) I changed these lines : log_directory = 'pg_log' log_filename = ...
32
votes
8answers
7k views

Should new projects use logback instead of log4j? [closed]

Should new projects use logback instead of log4j as a logging framework ? Or with other words :'Is logback better than log4j (leaving the SLF4J-'feature' of logback beside)?'
30
votes
7answers
5k views

Logging in Scala

What is a good way to do logging in a Scala application? Something that is consistent with the language philosophy, does not clutter the code, and is low-maintenance and unobtrusive. Here's a basic ...
29
votes
4answers
6k views

Exception Logging for WCF Services using ELMAH

We are using the excellent ELMAH to deal with unhandled exceptions in an ASP.NET 3.5 web application. This works extremely well for all of the site apart from WCF services which are being consumed ...
29
votes
3answers
3k 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( ...
28
votes
11answers
5k views

Is it a bad idea to leave firebug “console.log” calls in your producton JavaScript code?

I have a bunch of console.log calls in my JavaScript. Should I comment them out before I deploy to production? I'd like to just leave them there so I don't have to go to the trouble of removing the ...
27
votes
7answers
10k views

How to send java.util.logging to log4j?

I have an existing application which does all of its logging against log4j. We use a number of other libraries that either also use log4j, or log against Commons Logging, which ends up using log4j ...
27
votes
15answers
6k 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 ...
27
votes
8answers
8k views

Java Logging vs Log4J

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 do the job ...
26
votes
5answers
11k views

log4j vs logback

We are using log4j behind a selfmade wrapper. We plan to use much more features of it now. Should we update to logback ? (I mean the framework not a facade like SLF4J)
25
votes
6answers
6k views

Log to database instead of log files?

I'm interested in sending all Rails application logging to a database (MySQL or MongoDB) either in addition to or instead of to a log file. There are a few reasons, most of them surround doing things ...
25
votes
3answers
4k views

NullPointerException stack trace not available without debug agent

I have recently found a bug that causes a NullPointerException. The exception is caught and logged using a standard slf4j statement. Abridged code below: for(Action action : actions.getActions()) { ...
25
votes
10answers
8k views

Logging raw HTTP request/response in ASP.NET MVC & IIS7

I'm writing a web service (using ASP.NET MVC) and for support purposes we'd like to be able to log the requests and response in as close as possible to the raw, on-the-wire format (i.e including HTTP ...
25
votes
2answers
4k views

Eliminate Duplicate Logging in log4net

I have a program that makes many log4net calls to the "myprogram" loggers. It also calls other code that makes log4net calls to other loggers. I want to capture all logs higher than INFO for ...
25
votes
7answers
10k views

PHP Logging framework?

I'm looking for a simple PHP logging framework. What I need is something simple to plug-in into our PHP project, allowing for some configuration file to state what to log (INFOrmation, DEBUGging, ...
25
votes
13answers
3k views

Conditional logging with minimal cyclomatic complexity

After reading "What’s your/a good limit for cyclomatic complexity?", I realize many of my colleagues were quite annoyed with this new QA policy on our project: no more 10 cyclomatic complexity per ...
24
votes
4answers
373 views

Logging Uncaught Exceptions in Python

How do you cause uncaught exceptions to output via the logging module rather than to stderr? I realize the best way to do this would be: try: raise Exception, 'Throwing a boring exception' ...
24
votes
5answers
5k views

log4net versus TraceSource

In this thread many people have indicated that they use log4net. I am a fan of TraceSources and would like to know why log4net is used. Here is why I like trace sources: Pluggable listeners - XML, ...
24
votes
11answers
18k views

Python logging in Django

I'm developing a Django app, and I'm trying to use Python's logging module for error/trace logging. Ideally I'd like to have different loggers configured for different areas of the site. So far I've ...
23
votes
10answers
22k views

Know of any Java garbage collection log analysis tools?

I'm looking for a tool or a script that will take the console log from my web app, parse out the garbage collection information and display it in a meaningful way. I'm starting up on a Sun Java 1.4.2 ...
23
votes
6answers
10k 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 ...
22
votes
13answers
23k views

What commercial and open source competitors are there to Splunk? [closed]

It's difficult to find any. Please, no answers like scp + perl + duct tape. I need a complete solution.
21
votes
1answer
3k views

Django Setup Default Logging

I can't seem to figure out how to setup a "default" logger for my Django installation. I would like to use Django 1.3's new LOGGING setting in settings.py. I've looked at the Django Logging Doc's ...
21
votes
7answers
1k views

Why do loggers recommend using a logger per class?

As per NLog's documentation: Most applications will use one logger per class, where the name of the logger is the same as the name of the class. This is the same way that log4net operates. Why ...
21
votes
5answers
5k views

Deactivate any calls to Log before publishing: are there tools to do this?

According to Google, I must "Deactivate any calls to Log methods in the source code" before publishing my Android app (section 5 of the publication checklist). My open-source project is large and it ...
21
votes
8answers
2k 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 ...
21
votes
7answers
8k views

What's your favorite (free) log viewer for EntLib or Log4Net? [closed]

Currently we have Enterprise Library Logging going to the Event Log & a rolling flat file, but I'd like to implement database level logging so that I can have much better ...
20
votes
9answers
4k views

Should a “static final Logger” be declared in UPPER-CASE?

In Java, static final variables are constants and the convention is that they should be in upper-case. However, I have seen that most people declare loggers in lower-case which comes up as a violation ...
20
votes
5answers
9k views

log4net vs Enterprise Library, which is better? faster?

Anyone know of some performance comparisons of the latest version Enterprise Library and the latest version of log4net? Any technical reason why I should choose one over the other?
19
votes
8answers
7k views

How to configure log4net programmatically from scratch (no config)

This is a Bad Idea, I know, but... I want to configure log4net programmatically from scratch with no config file. I'm working on a simple logging application for me and my team to use for a bunch of ...
19
votes
9answers
4k views

Logging in Linux

So I have a daemon running on a linux system, and I want to have a record of its activities: a log. The question is, what is the "best" way to accomplish this? My first idea is to simply open a file ...
18
votes
5answers
612 views

C# Logging. What should I use?

I'm looking at switching to a new unified logging solution for use in our new line of products and I wanted to see what some of the people on Stack Overflow thought. We will need logging for a variety ...

1 2 3 4 5 97