Use loggers in an application
This topic describes how to use Java logging within an application.
Overview
To create an application using Java logging, perform the following steps:
Procedure
- Create the necessary handler, formatter, and filter classes if we need your own log files.
- If localized messages are used by the application, create a resource bundle, as described in Creating log resource bundles and message files.
- In the application code, get a reference to a logger instance, as described in Use a logger.
- Insert the appropriate message and trace logging statements in the application, as described in Use a logger.
Use a logger
Configure the logger hierarchy
Creating log resource bundles and message files
Change the message IDs used in log files
Example: Creating custom log handlers with java.util.logging
Example: Creating custom filters with java.util.logging
Example: Creating custom formatters with java.util.logging
Example: Adding custom handlers, filters, and formatters