
package uk.co.wingpath.util;


/**
* This enum represents the different logging levels used by
* {@link Reporter}s.
*/
public enum ReporterLevel
{
    NONE, FATAL, ERROR, WARNING, INFO, DEBUG, TRACE
}

