Tagged Questions
Simple Logging Facade for Java
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 ...
20
votes
3answers
14k 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 | ...
17
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, ...
12
votes
3answers
2k views
Is there a logging facade for the .NET world?
I'm somewhat new to the .NET stack and I was wondering if there is an equivalent to slf4j for the .NET platform. For me, logging to a Facade and being able to swap out logging implementations as ...
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
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 ...
10
votes
1answer
569 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"},
...
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
184 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
110 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
820 views
Logging in Clojure
For Java development, I use Slf4j and Logback.
Logger logger = LoggerFactory.getLogger(HelloWorld.class);
logger.debug("Hello world.");
How to use these two libs in Clojure programs? Majority of ...
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
1answer
261 views
How to get logging working in scala unit tests with testng, slf4s, and logback
I'm new to Scala, and not that familiar with recent developments in Java, so I am having what I assume is a basic problem.
I'm writing some Scala code, and testing it with test fixtures using ...
6
votes
3answers
453 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
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
1answer
139 views
How to use SLF4J to log to two different files based on type of msg..?
i am running a client server program in spring.
i am trying to implement SLF4J + Logback for logging.
Now the thing is my client (which in real life would be a device/sensor) will send me data in ...
5
votes
3answers
180 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
636 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
254 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
771 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 ...
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
82 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
2answers
111 views
Extending JBoss logging to database
We have jboss logging enabled in our application. Currently we are using the 'Rotating-file-handler' to log everything to files. This is defined in the jboss 'standalone.xml' file. We are looking into ...
4
votes
1answer
103 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
1answer
108 views
How can I get complete stacktraces for exceptions thrown in tests when using sbt and testng?
The stacktraces are truncated - e.g. they end with [info] ...
Using last or changing traceLevel doesn't help - it simply prints the complete stacktrace of the sbt wrapper.
This is testing with ...
4
votes
1answer
208 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
109 views
How to control Hibernate's logging?
I have a hibernate that is configured only programmatically ( I don't have a single XML file ).
I just finished writing my own implementation of org.slf4j.Logger.
How can I force hibernate to log to ...
4
votes
1answer
155 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
1k views
How to package webapp when using slf4j/logback?
I have lots of web applications to build/package, and I would like to share their common libraries.
Regarding logging, I would like to bundle slf4j-api with each application, but consider the ...
4
votes
2answers
900 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
448 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 ...
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
3answers
82 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
1answer
253 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
119 views
LOGBACK: No context given for ch.qos.logback.classic.gaffer.ConfigurationDelegate@
I get the above message on the console at the start of program execution, and am unclear how to resolve it. For information, the program is written in Scala, uses the grizzled-slf4j adapter over slf4j ...
3
votes
2answers
1k 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 ...
3
votes
1answer
177 views
How to use logback in a PlayFramework project
Because of dependencies on a project I am working on developing a web application using the Play!Framework, I have to configure logback to prevent it from flooding my output with DEBUG messages.
But ...
3
votes
3answers
346 views
Retrieving project dependencies with SBT
This is a newbie question regarding SBT.
How do I download/retrieve dependencies?
For example, for slf4s only this line is mentioned:
val slf4s = "com.weiglewilczek.slf4s" %% "slf4s" % "1.0.6
...
3
votes
1answer
491 views
How to exclude commons logging dependency of spring with ivy?
I have a project build with ant using ivy for dependency management. I have no ivysetting file, but an ivy.xml with the following dependency (I want to use spring with slf4j instead of commons ...
3
votes
1answer
135 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 ...