Tagged Questions
69
votes
8answers
5k views
What's Up with Logging in Java? [closed]
Why one would use one of the following packages instead of the other?
Java Logging
Commons Logging
Log4j
SLF4j
Logback
29
votes
7answers
11k 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 ...
24
votes
3answers
16k views
Logging framework incompatibility
I'm building a small Java app and hoping to use logback for logging.
My app has a dependency on an older project that does its logging via
org.apache.commons | ...
22
votes
5answers
4k 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 ...
18
votes
2answers
3k views
Best practices for using Markers in SLF4J/Logback
We are using SLF4J+Logback combination at our project for a while now and are quite happy with it, but our logging strategy is fairly simple, using straightforward class based loggers and no fancy ...
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.
...
14
votes
4answers
1k views
Is there a Java 1.5 varargs API for slf4j yet?
I want to get rid of this lot...
public void info(String msg);
public void info(String format, Object arg);
public void info(String format, Object arg1, Object arg2);
public void info(String format, ...
11
votes
1answer
716 views
slf4j: how to log formatted message, object array, exception
What is the correct approach to log both a populated message and a stack trace of the exception?
logger.error(
"\ncontext info one two three: {} {} {}\n",
new Object[] {"1", "2", "3"},
...
11
votes
2answers
1k views
Difference between Simple Logging Facade for Java and Apache Commons Logging
What is the difference between Simple Logging Facade for Java and Apache Commons Logging ?
11
votes
2answers
9k 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 ...
10
votes
7answers
1k views
Is it worth wrapping a logging framework in an additional layer?
I'm currently looking at upgrading the logging mechanism in a medium-to-large-sized Java codebase. Messages are currently logged using static methods on a Debug class, and I have recommended switching ...
9
votes
2answers
324 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
134 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
325 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
1answer
2k views
SLF4J logger.debug() does not get logged in JBoss 6
Context: JBoss Application Server 6
I am relying on slf4j-jboss-logmanager.jar to bind slf4j to the JBoss log manager.
All logger.info() output is correctly logged.
However, logger.debug() output ...
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
3answers
525 views
Using java annotation to inject logger dependency
I am using spring with aspect-j annotation support to allow for an @Loggable annotation. This allows automatic logging on a class based on the configuration.
I am wondering if I can somehow use ...
6
votes
2answers
201 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
191 views
How to handle disk full errors while logging in slf4j?
I am using slf4j+logback for logging in our application. Earlier we were using jcl+log4j and moved recently.
Due to the high amount of logging in our application, there is a chance of disk being full ...
5
votes
2answers
805 views
SLF4J - Logback: How to configure loggers in runtime?
we are using LogBack with our project, I want to configure logger according to some Data Base values, i.e If some DB value is set to true, then logger should use both file and DB appenders, if it's ...
5
votes
1answer
261 views
why to avoid constant folding in Java? When?
I saw some codes in slf4j as show below. I don't know why to avoid constant folding in here. Is it necessary to do that? or just best practice. what's the benefit of doing this?
Thanks.
/**
* ...
5
votes
5answers
2k views
Spring constructor injection of SLF4J logger - how to get injection target class?
I'm trying to use Spring to inject a SLF4J logger into a class like so:
@Component
public class Example {
private final Logger logger;
@Autowired
public Example(final Logger logger) {
...
5
votes
2answers
2k views
Logback to log different messages to two files
I am using logback/slf4j to do my logging. I want to parse my log file to analyze some data, so instead of parsing a great big file (mostly consisting of debug statements) I want to have two logger ...
5
votes
4answers
813 views
Logback SMTPAppender Limiting Rate
How can I limit the rate of emails a Logback SMTPAppender, so that it would email me at most once every n minutes?
I have setup my logging according to the Logback appender, but I don't quite see how ...
4
votes
1answer
66 views
force slf4j to print logs in sequence
I am using slf4j over log-back. Sometimes logs are not printing in the order (timestamp).
Could we force it to log in the same order as the code is running?
Update: This is happening when running ...
4
votes
2answers
90 views
How do make the JVM recognize a scala.Array[T] as a java array T[] in a polymorphic method call?
The problem can be found in the following code:
def debug[T](format: String, arg1:T, arg2:Any, args:Any*):T = {
logger.debug(format, (arg1 :: arg2 :: args.toList).toArray)
arg1
...
4
votes
1answer
110 views
How to sandbox SLF4J
I have a an application (extension) running inside a Smartfox server. Most of you won't know Smartfox, but the setup is like Tomcat. i.e. the extension has its own classloader which loads classes from ...
4
votes
2answers
2k views
SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”
My application is to be deployed on both tcServer and WebSphere 6.1. This application uses ehCache and so requires slf4j as a dependency.
As a result I've added the slf4j-api.jar (1.6) jar to my war ...
4
votes
1answer
230 views
Is Log4j a dead project? [closed]
I recently ended up in a bit of a mess on one of the projects I work on, a "mélange" of Log4j, Slf4j and Commons-Logging due to mixing different JARs from different open source projects.
I see more ...
4
votes
1answer
167 views
Using java.util.Formatter as default formatter for slf4j
I currently have a custom log manager that internally uses java.util.Formatter. The main issue is that it's not very usable: everything in one file per application, no possibilities to add specific ...
4
votes
2answers
968 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 {
...
4
votes
2answers
495 views
SLF4J Log Level as an argument
We are looking to use SLF4J, but one thing we found was that you can't specify the level as an argument, i.e
Logger.log(Level.INFO, "messsage");
You have to do this
logger.info("message");
this ...
4
votes
4answers
8k views
Hibernate, Spring and SLF4J Binding
I'm trying to setup a webapp with maven2 managed dependcies. Here my pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
3
votes
1answer
33 views
Reroute log4j to slf4j
If a 3rd party dependency logs using a concrete framework (such as log4j), and I want my app to do all logging via slf4j, then is it possible to configure log4j (either in XML, properties file, etc.) ...
3
votes
2answers
46 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
3answers
139 views
Can I use Log4j.xml configuration for SLF4J and Logback?
I have a project using common-logging and log4j, I want to change to use SLF4J + Logback. Is there any way to use existing log4j.xml for Logback?
3
votes
4answers
124 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 ...
3
votes
1answer
471 views
SLF4J NoSuchMethodError on LocationAwareLogger
This is a question that has been asked before, but unfortunately no solution seems to work for me. I am facing this exception (with abridged stack trace):
java.lang.NoSuchMethodError: ...
3
votes
1answer
154 views
compiling issue related to slf4j library
I am trying to compile an open source library, and meet the following problem. When I keep the two libraries, slf4j-jcl-1.6.0.jar and slf4j-api-1.6.0.jar, the eclipse compiler will give me the ...
3
votes
2answers
197 views
Slf4j LOGGER usage
Can anyone throw some light on the clear usage of different levels of LOGGER viz LOGGER.info() LOGGER.trace(), LOGGER.error() and LOGGER.debug().
Pls note its not about configuration, but its about ...
3
votes
1answer
354 views
How to use MDC with thread pools?
In our software we extensively use MDC to track things like session IDs and user names for web requests. This works fine while running in the original thread. However, there's a lot of things that ...
3
votes
1answer
429 views
How to log exception and message with placeholders with slf4j
What's the correct approach to log both an error message and an exception using slf4j?
I've tried doing this but the exception stack trace is never printed:
logger.error("Unable to parse data {}", ...
3
votes
1answer
251 views
Override Logback error output
In my custom exception class I've overridden toString():
@Override
public String toString() {
final String msg = getLocalizedMessage();
// base
String str = getClass().getName() + ": [" ...
3
votes
1answer
175 views
Get a dummy slf4j logger?
Can I get a dummy logger from slf4j? (Think the null object design pattern.) If so, can someone provide an example? Or will I have to implement a custom logger if I want to do that?
I'm hoping to ...
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
1answer
3k views
slf4j logging with jdk – how to enable debug?
By default slf4j, when using with jdk (slf4j-jdk14-1.6.1.jar), does not log debug messages.
How do I enable them?
I can’t find info neither in the official docs, the web or here on how to enable it.
...
3
votes
2answers
7k views
Beginning Hibernate 3.5 - Problems with ant task
I'm trying to work through "Beginning Hibernate 3.5", and I've hit an initial snag.
When I run ant exportDDL, I get the following error:
exportDDL:
[htools] Executing Hibernate Tool with a ...
3
votes
2answers
8k views
NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder
I am trying to run sample tiles example given here
Below is my POM.xml:
<dependencies>
<dependency>
<groupId>junit</groupId>
...