Contains classes for handling the logs.
Each class uses it's own logger. By adding this line:
private static final Logger logger = Logger.getLogger(FreeColGameObject.class.getName());
to your the class (and replacing "FreeColGameObject" with the name of the class). You may use methods
like logger.warning("message");
to make log entries.
@see "java.util.logging.Logger"