package com.srbenoit.log;

import java.util.logging.Logger;

/**
 * A thread that includes a static logger to which diagnostic messages can be logged.
 */
public class LoggedThread extends Thread {

    /** a log to which to write diagnostic messages */
    protected static final Logger LOG;

    static {
        LOG = LogMgr.getLogger();
    }

    /**
     * Constructs a new <code>LoggedThread</code>.
     *
     * @param  threadName  the name of the thread
     */
    public LoggedThread(final String threadName) {

        super(threadName);
    }
}
