Introduction to SLF4J 1. Overview Simple Logging Facade for Java (abbreviated SLF4J) – acts as a facade for different logging frameworks (e.g. java.util.logging, logback, Log4j). It offers a generic API making the logging independent of the actual implementation. This allows for different logging frameworks to coexist. It also helps migrate… Continue Reading slf4j-with-log4j2-logback

A Guide to Rolling File Appenders 1. Overview While log files often convey useful information, they naturally grow bigger over time, and if allowed to grow indefinitely, their size could become a problem. Logging libraries address this problem using rolling file appenders, which automatically “roll” or archive the current log… Continue Reading java-logging-rolling-file-appenders