Add logging and tracing to your application
You can add logging and tracing to applications to help analyze performance and diagnose problems in WAS.
Overview
Deprecation: The JRas framework that is described in this information center is deprecated. However, you can achieve the same results using Java logging.
Designers and developers of applications that run with or under WAS, such as servlets, JavaServer Pages files, enterprise beans, client applications, and their supporting classes, might find it useful to use Java logging for generating their application logging. This approach has advantages over adding System.out.println statements to your code:
- Your messages are displayed in the WAS standard log files, using a standard message format with additional data, such as a date and time stamp that are added automatically.
- You can more correlate problems and events in your own application to problems and events that are associated with WAS components.
- You can take advantage of the WAS log file management features.
- You can view your messages with the Log and Trace Analyzer tool.
Procedure
- Enable and configure one of the supported types of logging. Use one of the following methods:
- Configure Java logging using the console
- Configure applications to use Jakarta Commons Logging
- Logging Common Base Events in WAS.
- Customize the properties to meet your logging needs. For example, enable or disable a particular log, specify the number of logs to be kept, and specify a format for log output.
- Restart the appserver after making static configuration changes.
Configure Java logging using the console
Configure applications to use Jakarta Commons Logging
Programming with the JRas framework
Logging Common Base Events in WAS
Related tasks
Use a logger