org.opends.server.types
Class DebugLogCategory

java.lang.Object
  extended by org.opends.server.loggers.LogCategory
      extended by org.opends.server.types.DebugLogCategory

@PublicAPI(stability=UNCOMMITTED,
           mayInstantiate=false,
           mayExtend=false,
           mayInvoke=true)
public final class DebugLogCategory
extends LogCategory

Logging categories for the debug log messages.


Field Summary
static LogCategory CAUGHT
          The log category that will be used for caught exception messages.
static LogCategory CONSTRUCTOR
          The log category that will be used for constructor messages.
static LogCategory DATA
          The log category that will be used for raw data read messages.
static LogCategory DATABASE_ACCESS
          The log category that will be used for raw data access from the JE database messages.
static LogCategory ENTER
          The log category that will be used for method entry messages.
static LogCategory EXIT
          The log category that will be used for method exit messages.
static LogCategory MESSAGE
          The log category that will be used for general debug messages.
static LogCategory PROTOCOL
          The log category that will be used for protocol elements messages.
static LogCategory THROWN
          The log category that will be used for thrown exception messages.
 
Constructor Summary
DebugLogCategory(java.lang.String name)
          Constructor for the DebugLogCategory class.
 
Method Summary
 
Methods inherited from class org.opends.server.loggers.LogCategory
getName, parse, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

MESSAGE

public static final LogCategory MESSAGE
The log category that will be used for general debug messages.


CONSTRUCTOR

public static final LogCategory CONSTRUCTOR
The log category that will be used for constructor messages. Only logger related classes may use this.


DATA

public static final LogCategory DATA
The log category that will be used for raw data read messages.


THROWN

public static final LogCategory THROWN
The log category that will be used for thrown exception messages. Only logger related classes may use this.


CAUGHT

public static final LogCategory CAUGHT
The log category that will be used for caught exception messages. Only logger related classes may use this.


ENTER

public static final LogCategory ENTER
The log category that will be used for method entry messages. Only logger related classes may use this.


EXIT

public static final LogCategory EXIT
The log category that will be used for method exit messages. Only logger related classes may use this.


PROTOCOL

public static final LogCategory PROTOCOL
The log category that will be used for protocol elements messages.


DATABASE_ACCESS

public static final LogCategory DATABASE_ACCESS
The log category that will be used for raw data access from the JE database messages.

Constructor Detail

DebugLogCategory

public DebugLogCategory(java.lang.String name)
Constructor for the DebugLogCategory class.

Parameters:
name - The name of the level.