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 - see other levels in chart below) and where to send the log (e.g., C1 for the console and F1 for your rolling file appender)
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)