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 ...
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 ...
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
1answer
715 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 ...
9
votes
3answers
897 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
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 ...
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
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
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
812 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
0answers
53 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
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
111 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
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 ...
3
votes
3answers
138 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
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
105 views

SLF4j - logback question: how many logger objects should you create?

I am just starting to use logback and I have a question: Should you create one logger for each class like the following: final static Logger logger = LoggerFactory.getLogger(className.class); Or ...
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
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
4answers
7k 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 ...
3
votes
1answer
246 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 ...
3
votes
3answers
2k views

How to use SLF4J Loggers in a JSP

I'm in the process of migrating the logging of a middle-sized application from a custom solution to something more standard. I've decided on using Logback and SLF4J, and I have successfully migrated ...
2
votes
1answer
61 views

logger names for configuring akka logger using the event-handler

So, I am using Slf4jEventHandler and logback-classic. How do I configure the log levels for different actors separately? [I am using Akka 2.0_M2] I tried doing something like <configuration ...
2
votes
1answer
101 views

If I get rid of my 'multiple SLF4J Bindings' warning the logging stops working

I've got the following directory structure in tomcat 6: tomcat |-lib | |- logback-classic.jar | |- logback-core.jar | |- slf4j-api.jar | |- myState.jar |-shared | |-lib | | |- ...
2
votes
3answers
246 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
248 views

Where go my logging files of my webapp on a linux Tomcat 7 installation?

I currently develop a simple web app using Eclipse and a local Tomcat 7 server. I configured Eclipse so I can start the Tomcat 7 right out of my IDE - not much magic here. In my web app, I use SLF4J ...
2
votes
1answer
110 views

SLF4J best pratices

I'm writing a library and I use sfl4j to handle logging. I think it's good idea as long as every body can provide it's own implementation and then, the log provided by my application will be handled ...
2
votes
2answers
64 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
146 views

hostname undefined in logback/slf4j in production environment

I'm using logback/slf4j to do logging, and it works like a charm on my mac development machine. I have the following pattern used for mail appender subject: <subject>[ERROR] ${HOSTNAME} : ...
2
votes
2answers
187 views

slf4j warning about the same binding being duplicate

SLF4J complains about multiple bindings, but those look exactly the same: SLF4J: Class path contains multiple SLF4J bindings. SLF4J: Found binding in ...
2
votes
2answers
425 views

java.util.logging.Logger to Logback using SLF4J?

Is it possible to have a typical call to java.util.logging.Logger and have it route to Logback using SLF4J? This would be nice since I wouldn't have to refactor the old jul code line by line. EG, say ...
2
votes
2answers
433 views

Markers in Logback

So I'm really new to Logback and have a question about how I should go about implementing something. Say I have two appenders: and I want appender "a" to accept markers that are only 1 or 2, but I ...
2
votes
3answers
569 views

Logback native VS Logback via SLF4J

I have gone through the following article regarding the logging frameworks available for Java: http://michaelandrews.typepad.com/the_technical_times/2011/04/java-logging-reconsidered.html The author ...
2
votes
4answers
2k views

slf4j + java.util.logging: how to configure?

I'm trying to use slf4j + java.util.logging. I know how to set up the Java source code to do this via logger = LoggerFactory.getLogger(...) and logger.warn('...') or whatever. But where's the ...
2
votes
0answers
303 views

ServletContext.log() not logging

Log output of my RemoteServiceServlet (GWT) is not shown in Logfiles or Stdout when using getServletContext().log("anything"); For dependency injection I use Google Guice. For my own log output I use ...
2
votes
3answers
1k views

Solr: how to turn down logging

OK, so I'm thrilled with Solr, but I can't seem to figure out how to turn down the logging level so that it will actually run acceptably fast when I do a huge import run. I'm not even sure which ...

1 2 3