-
Recent Posts
Recent Comments
- CodingJam » Migliora i tuoi log con il Mapped Diagnostic Context (MDC) on Java.util.logging vs. slf4j
- Test Driven Development | Pearltrees on Drag & Drop with Selenium
- Gentoo下Nginx+thin构建rails环境 | ByPat博客专注于Linux资源分享! on Thin + Nginx with Rails
- Michael Glauche on Logback Console in Eclipse
- trentjohnson on Logback Console in Eclipse
Archives
Categories
Meta
Tag Archives: slf4j
Logback Console in Eclipse
Recently i did find there is a console plugin for logback in eclipse. Unfortunately its based on a very old version of logback (0.9.9), so i searched for the sources, bumped the logback/slf4j versions to 0.9.28 and 1.6.1 and fixed … Continue reading
Java.util.logging vs. slf4j
A bit of History At the time the now discontinued log4j was the most commonly used logging framework for java sun decided to implement JSR 47: java.util.logging. There were a lot of discussion, but it seems not been fruitful. java.util.logging … Continue reading
Logging with SLF4J and Guice
After getting angry at the java.util.logger once again i was thinking how to replace it with the SLF4J logger. Although Guice provides a very nice internal binding to java.util.logger, slf4j does offer a much nicer syntax. The devil is in … Continue reading