/** Contains a reference to the log object used by this library. */ public class NenyaLog { /** We dispatch our log messages through this logger. */ public static Logger log = Logger.getLogger("com.threerings.nenya"); }
public class AztecLog { public static Logger log = Logger.getLogger("aztec"); }
/** Provides a log instance for this package. */ class Log { static final Logger log = Logger.getLogger("com.samskivert.io"); }