0
votes
1answer
8 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 offi …
0
votes
4answers
126 views
Hibernate in Servlet causesNoClassDefFoundError: org/slf4j/LoggerFactory
I have a Java (6) application which uses Hibernate (V3.3.2) to read data from HSQLDB, which i build and debug/run with Eclipse (V3.5.1), and it works fine.
I then created a GWT (V …
5
votes
7answers
302 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 r …
29
votes
9answers
1k 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
2
votes
2answers
98 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
3answers
157 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 suc …
4
votes
5answers
4k 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 wra …
1
vote
2answers
274 views
Maven doesn’t resolve hibernate-c3p0’s dependency on slf4j
When I include hibernate-c3p0 in my Maven's pom.xml file, I get a runtime NoClassDefFoundError as it can't find org.slf4j.impl.StaticLoggerBinder. It was my impression that Maven w …
9
votes
5answers
897 views
How to send java.util.logging to log4j?
I have an existing application which does all of it's logging against log4j. We use a number of other libraries that either also use log4j, or log against Commons Logging, which en …
