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());

Adding the logger to a FreeCol class (and replacing "FreeColGameObject" with the name of the class) allows the use of methods such as logger.warning("message"); to generate log entries.
Since:
0.2.1
See Also:
"java.util.logging.Logger"