All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.gov.nist.core.LogLevels Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
package android.gov.nist.core;

public interface LogLevels {
    /*
     * Each of these levels must be mapped internally to logically equivalent
     * logging levels in your logger.
     */
    public static final int TRACE_NONE  =  0;
    public static final int TRACE_FATAL =  2;
    public static final int TRACE_ERROR =  4;
    public static final int TRACE_WARN  =  8;
    public static final int TRACE_INFO  = 16;
    public static final int TRACE_DEBUG = 32;
    public static final int TRACE_TRACE = 64;
    public static final int TRACE_MESSAGES = TRACE_INFO;
    public static final int TRACE_EXCEPTION = TRACE_ERROR;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy