Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

de.lmu.ifi.dbs.elki.logging
Class LogLevel

java.lang.Object
  extended by java.util.logging.Level
      extended by de.lmu.ifi.dbs.elki.logging.LogLevel
All Implemented Interfaces:
Serializable

public class LogLevel
extends Level

This class provides a set of logging levels that should be used to control logging output.

Author:
Steffi Wanka
See Also:
Level, Serialized Form

Field Summary
static LogLevel ALL
          ALL indicates that all messages should be logged.
static LogLevel DEBUG_FINE
          DEBUG_FINE is a message level providing debugging messages.
static LogLevel DEBUG_FINER
          DEBUG_FINER is a message level providing fairly detailed debugging messages.
static LogLevel DEBUG_FINEST
          DEBUG_FINEST is a message level providing highly detailed debugging messages.
static LogLevel EXCEPTION
          EXCEPTION is a message level indicating a serious failure.
static LogLevel MESSAGE
          MESSAGE is a message level describing This level is initialized to 1597.
static LogLevel PROGRESS
          PROGRESS is a message level describing progress messages.
static LogLevel VERBOSE
          VERBOSE is a message level providing regular user information.
static LogLevel WARNING
          WARNING is a message level indicating warning messages.
 
Fields inherited from class java.util.logging.Level
CONFIG, FINE, FINER, FINEST, INFO, OFF, SEVERE
 
Constructor Summary
LogLevel(String name, int value)
          Constructs a log level with the given name and the given integer value.
 
Method Summary
 
Methods inherited from class java.util.logging.Level
equals, getLocalizedName, getName, getResourceBundleName, hashCode, intValue, parse, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

EXCEPTION

public static final LogLevel EXCEPTION
EXCEPTION is a message level indicating a serious failure.

This level is initialized to 1797.


WARNING

public static final LogLevel WARNING
WARNING is a message level indicating warning messages.

This level is initialized to 1697.


MESSAGE

public static final LogLevel MESSAGE
MESSAGE is a message level describing

This level is initialized to 1597.


PROGRESS

public static final LogLevel PROGRESS
PROGRESS is a message level describing progress messages.

This level is initialized to 1497.


VERBOSE

public static final LogLevel VERBOSE
VERBOSE is a message level providing regular user information.

This level is initialized to 1397.


DEBUG_FINE

public static final LogLevel DEBUG_FINE
DEBUG_FINE is a message level providing debugging messages.

This level is initialized to 1297.


DEBUG_FINER

public static final LogLevel DEBUG_FINER
DEBUG_FINER is a message level providing fairly detailed debugging messages.

This level is initialized to 1197.


DEBUG_FINEST

public static final LogLevel DEBUG_FINEST
DEBUG_FINEST is a message level providing highly detailed debugging messages.

This level is initialized to 1097.


ALL

public static final LogLevel ALL
ALL indicates that all messages should be logged.

This level is initialized to 1045.

Constructor Detail

LogLevel

public LogLevel(String name,
                int value)
Constructs a log level with the given name and the given integer value.

Parameters:
name - the name of the level.
value - the value of the leve.

Release 0.1 (2008-07-10_1838)