// TestLog.java
//
// Created: November 2005
//
// This file is a component of the BioMoby project.
// Copyright Martin Senger (martin.senger@gmail.com).
//

/**
 * For testing a loging mechanism. Otherwise useless. <p>
 *
 * @author <A HREF="mailto:martin.senger@gmail.com">Martin Senger</A>
 * @version $Id: TestLog.java,v 1.2 2006/02/19 18:42:54 senger Exp $
 */

public class TestLog {

    private static org.apache.commons.logging.Log log =
       org.apache.commons.logging.LogFactory.getLog (TestLog.class);

    public static void main (String[] args) {

	log.info ("This is an info");
	log.warn ("This is a warning");
	log.error ("This is an error");
	log.debug ("This is a debug");
	log.fatal ("This is fatal");
    }
}
