package com.srbenoit.log;

import java.util.logging.Logger;

/**
 * An object that includes a static logger to which diagnostic messages can be logged.
 */
public class LoggedObject {

    /** a log to which to write diagnostic messages */
    protected static final Logger LOG;

    static {
        LOG = LogMgr.getLogger();
    }

    /**
     * Constructs a new <code>LoggedObject</code>.
     */
    protected LoggedObject() {

        // No action
    }
}
