com.vladium.logging
Interface ILogLevels

All Known Implementing Classes:
Logger

public interface ILogLevels

An enumeration of log level values used in conjunction with the API in Logger

Author:
Vlad Roubtsov, (C) 2001
See Also:
Logger

Field Summary
static int ALL
          setting log level to ALL enables all log levels
static java.lang.String ALL_STRING
           
static int INFO
          default log level
static java.lang.String INFO_STRING
           
static int NONE
          setting log level to NONE disables all logging
static java.lang.String NONE_STRING
           
static java.lang.String QUIET_STRING
           
static int SEVERE
          log level excluding all but severe errors
static java.lang.String SEVERE_STRING
           
static java.lang.String SILENT_STRING
           
static int TRACE1
          debug trace log level
static java.lang.String TRACE1_STRING
           
static int TRACE2
          finer debug trace log level
static java.lang.String TRACE2_STRING
           
static int TRACE3
          finest debug trace log level
static java.lang.String TRACE3_STRING
           
static int VERBOSE
          log level for chattier than normal operation
static java.lang.String VERBOSE_STRING
           
static int WARNING
          log level for quieter than normal operation
static java.lang.String WARNING_STRING
           
 

Field Detail

SEVERE

static final int SEVERE
log level excluding all but severe errors

See Also:
Constant Field Values

WARNING

static final int WARNING
log level for quieter than normal operation

See Also:
Constant Field Values

INFO

static final int INFO
default log level

See Also:
Constant Field Values

VERBOSE

static final int VERBOSE
log level for chattier than normal operation

See Also:
Constant Field Values

TRACE1

static final int TRACE1
debug trace log level

See Also:
Constant Field Values

TRACE2

static final int TRACE2
finer debug trace log level

See Also:
Constant Field Values

TRACE3

static final int TRACE3
finest debug trace log level

See Also:
Constant Field Values

NONE

static final int NONE
setting log level to NONE disables all logging

See Also:
Constant Field Values

ALL

static final int ALL
setting log level to ALL enables all log levels

See Also:
Constant Field Values

SEVERE_STRING

static final java.lang.String SEVERE_STRING
See Also:
Constant Field Values

SILENT_STRING

static final java.lang.String SILENT_STRING
See Also:
Constant Field Values

WARNING_STRING

static final java.lang.String WARNING_STRING
See Also:
Constant Field Values

QUIET_STRING

static final java.lang.String QUIET_STRING
See Also:
Constant Field Values

INFO_STRING

static final java.lang.String INFO_STRING
See Also:
Constant Field Values

VERBOSE_STRING

static final java.lang.String VERBOSE_STRING
See Also:
Constant Field Values

TRACE1_STRING

static final java.lang.String TRACE1_STRING
See Also:
Constant Field Values

TRACE2_STRING

static final java.lang.String TRACE2_STRING
See Also:
Constant Field Values

TRACE3_STRING

static final java.lang.String TRACE3_STRING
See Also:
Constant Field Values

NONE_STRING

static final java.lang.String NONE_STRING
See Also:
Constant Field Values

ALL_STRING

static final java.lang.String ALL_STRING
See Also:
Constant Field Values