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 ...
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 ...
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
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 ...
9
votes
2answers
322 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
133 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

difference between slf4j and log4j

what are the advantages of log4j and slf4j...
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
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
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
963 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
1answer
30 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
45 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
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
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
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
245 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
1answer
133 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
86 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
3answers
245 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
159 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
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
188 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
595 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
204 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
106 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
2answers
174 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
39 views

Failed to instantiate SLF4J LoggerFactory on Spring 'mvc-basic' tutorial

I'm trying a Spring 3.x tutorial on Eclipse 3.7 with m2e and Maven Integration for WTP plugins installed. I converted the above tutorial to Maven Project, but when i deploy the web application i get ...
1
vote
0answers
53 views

Enabling logging in JBoss 6.1 final with slf4j

I'm trying to enable logging with slf4j 1.6.1 in JBoss 6.1 final and have run in to many problems, read many articles on Google and on here, and have ended up confused with logging still not working. ...
1
vote
2answers
65 views

SLF4J logging to file vs. DB vs. Solr

I need some suggestions in terms of SLF4J logging. Currently, we are using SLF4J logging (log4j binding) for a our Java web app, which uses the simple ConsoleAppender. Our next step is researching ...
1
vote
2answers
81 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
0answers
59 views

what's is the best way to initialize log4j with EJB 3.0?

I have an EAR who has only EJBs (EJB3.0) and with out a WAR module, the server is JBOSS 4.3 over linux. I want to initialize LOG4J with a log4j.properties file outside the server and use slf4j as ...
1
vote
2answers
96 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
37 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
349 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
3answers
72 views

How can I disable logging in some of my packages?

I have certain packages (Mainly from external jars) that I'd like to disable there logging. I am using: import org.slf4j.Logger; import org.slf4j.LoggerFactory; for my logging. Thanks
1
vote
1answer
120 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
85 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
164 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
191 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
168 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
196 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
193 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
334 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
316 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 2