Logging guide
- The project uses the
java.util.loggingpackage for logging. LogsCentermanages logging levels and destinations.- A class obtains a
LoggerwithLogsCenter.getLogger(Class), which logs messages at the configured level. - Log messages are written to the console and a
.logfile. - The output logging level can be controlled by changing the
LOG_LEVELconstant in theLogsCenterclass. - When choosing a level for a log message, follow the conventions given in [se-edu/guides] Java: Logging conventions.