Tagged Questions
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
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 ...
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 ...
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.
...
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 ...
9
votes
2answers
187 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 ...
8
votes
2answers
111 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
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
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
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 ...
6
votes
2answers
195 views
Is there a way to trigger a stacktrace whenever a particular logger is used?
I'm currently trying to track down the source of some lazy loading calls in hibernate, and the easiest way to do so would be to turn on hibernate SQL logging whenever the lazy loading is going to ...
5
votes
3answers
3k views
Logback tutorial
Where can I find a Logback tutorial and/or sample projects? Something similar with this "Log4j Tutorial" would be nice.
Note: I am aware of the documentation available on the official Logback website
...
4
votes
2answers
901 views
How to make Jersey to use SLF4J instead of JUL?
I've found a useful article that explains how to make Jersey to use SLF4J instead of JUL. Now my unit test looks like (and it works perfectly):
public class FooTest extends JerseyTest {
...
3
votes
2answers
35 views
SLF4J logs error messages at info level
I'm running into a weird problem. I have a class that used to use Log4j, and I could do something like:
LOGGER.log(Level.SEVERE, "This is a message");
And I'd get output like this:
SEVERE: This ...
3
votes
1answer
2k views
How to get SLF4J “Hello World” working with log4j?
The "Hello World" example from SLF4J is not working for me. I guess this is because I added slf4j-log4 to my classpath. Should I configure log4j directly for the hello world to work?
log4j:WARN No ...
3
votes
4answers
6k views
How do I configure Spring and SLF4J so that I can get logging?
I've got a maven & spring app that I want logging in. I'm keen to use SLF4J.
I want to put all my config files into a directory {classpath}/config including log4j.xml and then init using a spring ...
2
votes
1answer
87 views
SLF4J Log4J Jboss 4.3 and EJB 3.0
I made a new program with ejb3 + slf4j with maven
To use SLF4J with LOG4J I have
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
...
2
votes
2answers
59 views
How does simply adding slf4j to the pom.xml wrap log4j?
From what I have seen in example spring pom.xml files is that they add a few entries for slf4j and log4j and somehow when you use log4j in your spring application it will be wrapped by slf4j library.
...
2
votes
4answers
103 views
Any reason to use private instead of private final static on the LogBack Logger?
When instantiating Logger in a Spring Controller, is there any reason to declare it as a static final? The Logger is not used outside MyController.class. I've seen both examples in use, but can't see ...
2
votes
3answers
184 views
Grails: Replace log4j with logback
I am trying to replace log4j in my Grails app with logback but am always getting a
Embedded error: java.lang.reflect.InvocationTargetException
org.apache.log4j.LogManager
when running run-app or ...
2
votes
1answer
148 views
SLF4J log4j NoSuchMethodError on Category
I'm using SLF4J + LogBack to handle my logging, and have the appropriate jars to route the other logging framework calls. However I've run across the issue noted here:
...
2
votes
2answers
63 views
How to include static information in logging with Log4j or similar?
We have an application where a log message without the context in which it was run (i.e. the database) does nearly never make sense. The information is always available, but it is quite cumbersome to ...
2
votes
1answer
169 views
Migrate Log4J log.debug statements to SLF4J's parameterized messages?
I have around 400 of production Java source code files with around hundred to twenty thousand lines of codes each to change out from Log4J String concatenation to SLF4J's parameterized logging.
...
2
votes
2answers
536 views
Redirect System.out.println to Log4J, while keeping class name information
I have some libraries that are calling System.out.println on me, I'd like to redirect them through log4j or commons logging. But in particular I'd like to keep the fully-qualified-classname so I know ...
2
votes
1answer
194 views
What is the proper solution for logging on a StringBuffer object using log4j over SLF4J?
I want to know if there's something already done, an ext library to do such thing?
I need the logger to be redirected to a StringBuffer for then ALL that text to be included in a database record as a ...
2
votes
1answer
2k views
Config SLF4J using library to use LOG4J configuration
I have a project using log4j. Now I have to introduce a library using slf4j. Can I ask slf4j to initialize itself based on log4j config? So I basicly want log4j as underlying library under slf4j.
...
2
votes
1answer
104 views
Which logger framework in java shall one use based on performance and consistency criterion?
Which logger framework in java shall one use based on performance and consistency criterion?
I need to use it in highly concurrent application and do not wish to use any log wrappers.
Please suggest ...
2
votes
1answer
231 views
Java: library that does nice formatted log outputs
I cannot find back a library that allowed to format log output statements in a much nicer way than what is usually seen. One of the feature I remember is that it could 'offset' the log message ...
2
votes
2answers
172 views
What access level should loggers be set to?
I'm using SLF4J with Log4J underneath. What access levels should I be setting my loggers to?
static final Logger logger = LoggerFactory.getLogger(ClassName.class);
2
votes
6answers
2k views
How to setup a central logging server and divide logging events from test and production?
How best should I setup a central logging (or perhaps 2, each one exclusive to either test or prod) server such that:
I do not have to worry about the code referencing any conditionals that might ...
1
vote
2answers
50 views
Java Application: Getting Log4j To Work Within Eclipse Environment
I've done my best to setup eclipse and my Java Application to use a log4j.properties file. However, it does not seem to be using the properties file and I'm not sure why.
Libraries: slf4j-api-1.6.1, ...
1
vote
2answers
78 views
Hibernate,Log4j and SLF4j [closed]
i am using log4j
and i want to disable hibernate info logging, so here's what i tried, but it doesn't work and i still see the hibernate info logging:
1- log4j.properties:
log4j.rootLogger=DEBUG, ...
1
vote
1answer
30 views
Separate logs for multiple instances of the same process?
I have a java console application that can be run simultaneously by multiple users, but I need separate log for each of these java processes. It would be run on the same machine... I'm using slf4j ...
1
vote
2answers
237 views
Tomcat Logging With Slf4j and Log4j
I've got a web-app deployed to a Tomcat 7 server. My application uses log4j and a file appender. However, not all logging messages are getting written to the file.
On my classpath, I have:
...
1
vote
1answer
106 views
slf4j + log4j problem
I'm trying to configure slf4j with log4j in my java application and I get no success.
My log4j file looks like this:
log4j.rootLogger=DEBUG,stdout
...
1
vote
1answer
77 views
Why are log files commonly flat?
Are log files not meant to be read by machines but by users only? I wonder if there are file appenders for any logging framework that write their output to XML.
1
vote
1answer
152 views
Are there any performance overheads using slf4j with log4j vs using log4j alone?
I am thinking off migrating a java 1.4.2 project from log4j to slf4j. It is the advantage of parameterised logging and the code clarity (no need if log.isdebug..) That is drawing me to such ...
1
vote
1answer
162 views
Are there any log4j or slf4j Appender frameworks that provide additional appenders
While the core log4j and slf4j libraries come with a lot of good stuff, and i could build my own, but i was wondering if there are any libraries that ship with interesting appenders.
Most appenders ...
1
vote
1answer
146 views
Jboss logging - how to limit un-known classes?
My STDOUT / console output in Eclipse is being flooded by lines like:
12:05:37,395 INFO [STDOUT] 2163 [RMI TCP Connection(1)-127.0.0.1] DEBUG org.apache.struts.action.ActionServlet - Processing ...
1
vote
2answers
180 views
Best logging system
I'm making an application and I note that in my dependencies I have many JARs for logging library (commons-logging, log4j, slf4j)...but what do you think is the best approach?
Why I should use the ...
1
vote
1answer
174 views
migrate from slf4j+logback to slf4j+log4j
I was using slf4j+logback in my plugin for third-party application. New version of main application was switched from log4j to slf4j+log4j+custom appenders....
It look like that i need to change my ...
1
vote
1answer
314 views
Get tomcat log file programmatically within webapp
I'm looking for a way to retrieve the Tomcat log within a webapp. In the past I've seen this feature provided in other webapps, usually dumping the log in a Servlet.
I'm using slf4j (with log4j) and ...
1
vote
2answers
295 views
slf4j/log4j: disabling console output when console is inappropriate
I'm starting a JVM programmatically with ProcessBuilder. For clarity let's call the JVM that uses ProcessBuilder JVM A and the one it starts JVM B. JVM B uses slf4j/log4j for logging.
The issue here ...
1
vote
2answers
489 views
Configure logging with Lift
The Lift wiki page on logging states that a lot of setup is done automatically. Right now my problem is that I already have a running backend with its own logging configuration and a log4j.properties ...
1
vote
1answer
3k views
Storing log into .log file using SLF4j/log4j
I am using SLF4J and as per requirement i have to store the logs into the .log file. But when i run the program the log are not written into thelog file.
Class :
import org.slf4j.Logger;
import ...
1
vote
1answer
904 views
How to initialize slf4j (using log4j) logger properly in abstract classes / for inheritance
In my project I've got a top-level abstract class FrameProducer. I added a slf4j logger at this level, so that every inheriting class already has it. Here the code:
public abstract class ...
1
vote
1answer
322 views
Spring: “SimpleLogger does not seem to be location aware” exception
I'm getting an exception in a Spring app on my first line of code:
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
I have commons-logging-1.1.1.jar configured as a ...
1
vote
2answers
760 views
Log files not generated with Hibernate and slf4j
In my application I'm using Hibernate, Apache Commons Logging and Log4J. But my log files are not getting generated. Is these because Hibernate uses slf4j?
In my classpath I have the following jars.
...
1
vote
1answer
1k views
How to read log4j output to a web page?
I have a web page, used for admin purposes, which runs a task (image fetching from a remote site).
In order to be able to debug the task using the browser only, no ssh etc, I'd like to be able to read ...