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
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)?'
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
6answers
23k views

Log4j, configuring a Web App to use a relative path

I have a java webapp that has to be deployed on either Win or Linux machines. I now want to add log4j for logging and I'd like to use a relative path for the log file as I don't want to change the ...
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)
24
votes
13answers
9k views

Java Log Viewer

Unfortunately, sometimes the only way to debug a program is by going through its long log files. I searched for a decent log viewer for a while now, and haven't found a real solution. The only ...
21
votes
5answers
3k views

Is Log4j being abandoned in favor of Slf4j?

It seems that log4j has some class loading issues (among others) and it seems to me the trend is to move out of log4j toward slf4j. (Hibernate stopped using the first in favor of the latter) Is it ...
19
votes
4answers
24k views

Creating multiple log files of different content with log4j

Is there a way to configure log4j so that it outputs different levels of logging to different appenders? I'm trying to set up multiple log files. The main log file would catch all INFO and above ...
17
votes
8answers
5k views

Log4J: Strategies for creating Logger instances

I decided to use Log4J logging framework for a new Java project. I am wondering what strategy should I use for creating/managing Logger instances and why? one instance of Logger per class e.g. ...
17
votes
4answers
13k views

Where do I configure log4j in a JUnit test class?

Looking at the last JUnit test case I wrote, I called log4j's BasicConfigurator.configure() method inside the class constructor. That worked fine for running just that single class from Eclipse's ...
17
votes
5answers
22k views

Hibernate 3.4 with slf4j and log4j

I'm attempting to upgrade from Hibernate 3.2 to 3.4, which apparently uses slf4j. Our project currently uses log4j. So my assumption is that I should be using the slf4j-log4j12 wrapped implementation. ...
15
votes
4answers
3k views

Why chose XML over properties files for Log4J configuration?

Are there any reasons to use XML over properties files for Log4J configuration?
13
votes
3answers
4k views

Logging in Java and in general: Best Practices?

Sometimes when i see my logging code i wonder if i do it right. There might be no definitive answer to that, but i've folling concerns: Library Classes: I have several library classes wich might log ...
13
votes
3answers
17k views

Using system environment variables in log4j xml configuration

Is it possible to reference system environment variables (as opposed to Java system properties) in a log4j xml configuration file? I'd like to be able to do something like: <level ...
12
votes
2answers
7k views

Set System Property With Spring Configuration File

Configuration: Spring 2.5, Junit 4, Log4j The log4j file location is specified from a system property ${log.location} At runtime, system property set with -D java option. All is well. Problem / ...
12
votes
1answer
2k views

How to mask credit card numbers in log files with Log4J?

Our web app needs to be made PCI compliant, i.e. it must not store any credit card numbers. The app is a frontend to a mainframe system which handles the CC numbers internally and - as we have just ...
12
votes
6answers
29k views

log4j:WARN No appenders could be found for logger in web.xml

I already put the log4jConfigLocation in web.xml, but still, i get warning log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader). log4j:WARN Please ...
12
votes
5answers
23k views

Setting a log file name to include current date in Log4j

I would like to set the log file name for a log4j and log4net appender to have the current date. We are doing Daily rollovers but the current log file does not have a date. The log file name format ...
12
votes
9answers
5k views

Should a Log4J logger be declared as transient?

I am using Java 1.4 with Log4J. Some of my code involves serializing and deserializing value objects (POJOs). Each of my POJOs declares a logger with private final Logger log = ...
11
votes
6answers
3k views

Java Logging: show the source line number of the caller (not the logging helper method)

The numerous (sigh...) logging frameworks for Java all do a nice job of showing the line number of the source file name for the method that created the log message: log.info("hey"); [INFO] ...
11
votes
11answers
4k views

Logging Java web applications?

I am planning to implement logging into a web application that I am currently working on but I am struggling with some of the details. What is the best way to go about logging a Java web application? ...
11
votes
2answers
8k views

Logging using SL4J, Jakarta Commons logging, log4j for third party libraries and my own code

I have some questions about logging, more specifically about setting it up and making sure it works. The project I'm doing will use Wicket, Spring and Hibernate. I know that Wicket and Hibernate uses ...
11
votes
8answers
12k views

log4j log file names?

We have several jobs that run concurrently that have to use the same config info for log4j. They are all dumping the logs into one file using the same appender. Is there a way to have each job ...
10
votes
6answers
2k views

Read a file line by line in reverse order

I have a java ee application where I use a servlet to print a log file created with log4j. When reading log files you are usually looking for the last log line and therefore the servlet would be much ...
10
votes
5answers
1k views

Apache Chainsaw successor?

It looks like the development on Chainsaw has stopped 4 years ago (last development build dated 2006-03-02)... Anyone knows of a replacement tool providing the same functionality, but with more up ...
10
votes
5answers
2k views

Baffled by Java Logging Systems with Spring and Hibernate

WHen deploying my Spring / Hibernate application, I get the following warning related to logging: log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader). ...
10
votes
5answers
14k views

log4j redirect stdout to DailyRollingFileAppender

I have a java app that uses log4j. Config: log4j.rootLogger=info, file log4j.appender.file=org.apache.log4j.DailyRollingFileAppender log4j.appender.file.File=${user.home}/logs/app.log ...
10
votes
9answers
5k views

In log4j, does checking isDebugEnabled before logging improve performance?

I am using Log4J in my application for logging. Previously I was using debug call like: Option 1: logger.debug("some debug text"); but some links suggest that it is better to check ...
9
votes
2answers
189 views

Configuring Log4j Loggers Programmatically

I am trying to use SLF4J (with log4j binding) for the first time. I would like to configure 3 different named Loggers that can be returned by a LoggerFactory which will log different levels and push ...
9
votes
3answers
245 views

Conditional logging with log4j

The web application on which I am working occasionally develops data integrity issues for some of the users. I'd like to turn on trace level logging, but since we are dealing with 100s of requests per ...
8
votes
2answers
112 views

Java: MentaLog logging library performance and feedback

I've stumbled over a new logging library called MentaLog. The name is weird but it looks like there are some interesting features not supported by log4j/logback, like zero-allocation, varargs, filters ...
8
votes
5answers
472 views

Best way to modify log4j appended for logging

I'm currently developing soon to be big(functional wise) rest web service and I want to capture logs really good, so I can have a good insight of what is going on where. For now I use log4j for ...
8
votes
2answers
306 views

migrating a project from log4j to slf4j+log4j

I have a large web project that uses log4j directly, together with many 3rd-party libraries and a mix of logging libraries. our code base - uses log4j directly. Hibernate - uses slf4j, and the ...
8
votes
3answers
2k views

difference between slf4j and log4j

what are the advantages of log4j and slf4j...
8
votes
3answers
589 views

what's log4j actually doing when we turn on or off some log places?

We know we can config log4j to turn off log on specific places (class or package in Java) via its properties/configuration file. My questions are followed: what's log4j actually doing for those ...
8
votes
1answer
1k views

log4j and the thread context classloader

I'm a newbie to Java and just starting to figure out the concept of class loaders. Right now I am having some issues with log4j regarding its use of the thread context classloader. I'm getting the ...
8
votes
2answers
8k views

How do you Change a Package's Log Level using Log4j?

I've encountered the following bug: http://issues.apache.org/jira/browse/AXIS2-4363 It states the following: This error only occurs when log level for org.apache.axiom is DEBUG so a ...
8
votes
2answers
5k views

How do I make log4j clear a log at startup?

I want the log to roll over as long as the application is running, but I want the log to start fresh when the application is restarted. Updated: Based on erickson's feedback, my appender looks like ...
8
votes
6answers
31k views

Problem with Commons Logging / Log4j setup in spring webapp with tomcat 6

I have a problem wih a logging setup in a apring webapp deployed under tomcat 6. The webapp uses the commons-logging api, on runtime log4j should be used. The log file is created but remains empty - ...
7
votes
3answers
81 views

Number of loggers used

I'm working on a very large java application with log4j, and I was wondering if there is a way to extract in runtime the number of active loggers? Or what are the existing loggers in the application? ...
7
votes
2answers
325 views

log4j file renaming strategy

I'm using log4j 1.2.15 and I wonder if someone has a remedy to the annoying file renaming strategy log4j is using. I'll try to explain: I am using the following RollingFileAppender that creates 11 ...
7
votes
1answer
203 views

Modifying how CompositeRollingAppender renames files

I've seen a lot of questions here on the different appenders log4j has, but none that seem to cover the issue I'm having. Apologies if this is repeated anywhere. I'm using a CompositeRollingAppender ...
7
votes
1answer
2k views

Override log4j.properties

My java application references a 3rd-party jar file which uses log4j logging. The problem is that this jar contains its own log4j.properties file which causes access denied exceptions on my machine, ...
7
votes
7answers
2k views

Why calling LoggerFactory.getLogger(…) every time is not recommended?

I've read tons of posts and documents (on this site and elsewhere) pointing that the recommended pattern for SFL4J logging is: public class MyClass { final static Logger logger = ...
7
votes
4answers
1k views

Filtering out log4j messages from third-party frameworks?

How do I filter log messages from external third party frameworks? I am using Hibernate and Spring framework and I would like to suppress the logs so that only my log4j logs appears.
7
votes
4answers
4k views

Setting log level of message at runtime in slf4j

When using log4j, the Logger.log(Priority p, Object message) method is available and can be used to log a message at a log level determined at runtime. We're using this fact and this tip to redirect ...
7
votes
3answers
3k views

Script to convert log4j.properties to log4j.xml

I need to use custom filters, so I need to convert some long log4j.properties files to log4j.xml. Is anyone aware of a tool to do this, or willing to contribute one they have used? Searching has ...
7
votes
10answers
24k views

Log4J properties file - where to put it

I wrote a web service project using netbeans 6.7.1 with glassfish v2.1, put log4j.properties to the root dir of project and use static Logger logger = Logger.getLogger(MyClass.class); in ...
7
votes
3answers
11k views

log4j in grails : how to log into file?

I have this log4j configuration in my grails config.groovy log4j = { error 'org.codehaus.groovy.grails.web.servlet', // controllers 'org.codehaus.groovy.grails.web.pages' // ...
7
votes
3answers
10k views

log4j with timestamp per log entry

this is my log output INFO main digestemails - process inbox INFO main digestemails - checking for emails in c:\development\DCMail\email\KN-Source INFO main digestemails - digesting ...

1 2 3 4 5 19