Class providing centralized logging services. The logger defines five message types, and provides methods to create messages of those types. These types are:
info
- Useful information generated during normal
operation of the application
warning
- An error situation has occurred, but the
operation was able to finish succesfully
error
- An error situation which prevented the
operation from finishing succesfully
debug
- Internal information from the application meant
for developers
exception
- A Java exception reported using the logger.
Includes the exception stack trace and a possible free-form message
Currently the class offers logging only to the standard output