You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »


Contains configuration for logging. The settings that might want to change:

F1.File indicates where you want your rolling file appender to be stored on your workstation (e.g., c:/dev/logs/oasskeleton.log)

log4j.rootLogger indicates the level of logging (e.g., INFO) and where to send the log (e.g., C1 for the console and F1 for your rolling file appender that you configured above)

Levels of logging:

TRACE (gives you more than DEBUG)
DEBUG (The DEBUG Level designates fine-grained informational events that are most useful to debug an application - more than INFO)
INFO (The INFO level designates informational messages that highlight the progress of the application at coarse-grained level - more than WARN)
WARN (The WARN level designates potentially harmful situations - more than ERROR)
ERROR (The ERROR level designates error events that might still allow the application to continue running)
FATAL (The FATAL level designates very severe error events that will presumably lead the application to abort)

  • No labels