Package net.sf.freecol.common.logging

Contains classes for handling the logs.

See:
          Description

Class Summary
DefaultHandler The default handler for FreeCol's log records.
 

Package net.sf.freecol.common.logging Description

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 Also:
"java.util.logging.Logger"