Package net.sf.freecol.common.logging
FreeCol Common Logging package
Contains classes for handling logging information within FreeCol.
Each class uses its own logger by adding the following line:
private static final Logger logger = Logger.getLogger(FreeColGameObject.class.getName());
logger.warning("message");
to generate log entries.- Since:
- 0.2.1
- See Also:
- "java.util.logging.Logger"
-
Class Summary Class Description DefaultHandler The default handler for FreeCol's log records.TextFormatter Formats a log record's data into human-readable text.