view source
Java Logging Basics
Java takes a customizable and extensible approach to logging. While Java provides a basic logging API through the java.util.logging package, you can easily use one or more alternative logging solutions instead. These solutions provide different methods for creating log data but share the ultimate goal of delivering logs from your application to a destination.
Advertisement