IBM Rational Performance Tester SDK

com.ibm.rational.test.lt.core.logging
Interface IPDAbstractLog

All Known Subinterfaces:
IPDExecutionLog, IPDLog
All Known Implementing Classes:
PDAbstractLog, PDExecutionLog, PDLog

public interface IPDAbstractLog


Field Summary
static int ALL
          Constant value intended for logging all information.
static int CONFIG
          Constant value intended for logging static configuration messages.
static int FINE
          Constant value intended for logging the lowest detail/volume and highest importance of trace information.
static int FINER
          Constant value intended for logging the median detail/volume of trace information.
static int FINEST
          Constant value intended for logging the highest detail/volume of trace information.
static int INFO
          Constant value intended for logging informational messages.
static int NONE
          Constant value intended for logging no information.
static int SEVERE
          Constant value intended for logging severe messages.
static int WARNING
          Constant value intended for logging warning messages.
 
Method Summary
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, int[] tokens)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, int[] tokens, String correlationValue)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, int[] tokens, Throwable exception)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, int[] tokens, Throwable exception, String correlationValue)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, String correlationValue)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, String[] tokens)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, String[] tokens, String correlationValue)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, String[] tokens, Throwable exception)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, String[] tokens, Throwable exception, String correlationValue)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, Throwable exception)
           
 void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, Throwable exception, String correlationValue)
           
 String prepareMessage(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, int[] tokens)
           
 String prepareMessage(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent, String msgCatalogId, int severity, String[] tokens)
           
 

Field Detail

ALL

static final int ALL
Constant value intended for logging all information. All tracing messages should include everything about the application execution state and flow information at any arbitrary point

See Also:
Constant Field Values

FINEST

static final int FINEST
Constant value intended for logging the highest detail/volume of trace information. Finest tracing messages should include a precise range of application execution state and flow information at arbitrary points that is of specific interest to developers such as loops and instance variables.

See Also:
Constant Field Values

FINER

static final int FINER
Constant value intended for logging the median detail/volume of trace information. Finer tracing messages should include fairly detailed application execution state and flow information that is of general interest to developers such as conditional and exception blocks.

See Also:
Constant Field Values

FINE

static final int FINE
Constant value intended for logging the lowest detail/volume and highest importance of trace information. Fine tracing messages should include a broad range of application execution state information that is of broad interest to developers such as method entry/exit points, timestamps, rough application flow and potential performance problems.

See Also:
Constant Field Values

CONFIG

static final int CONFIG
Constant value intended for logging static configuration messages. Configuration information may include hardware specifications, OS profiles and/or application properties sensible to end users and system administrators to assist in debugging problems with particular configurations. No action is required by the user to correct an issue and/or error

See Also:
Constant Field Values

INFO

static final int INFO
Constant value intended for logging informational messages. Informational messages should include only reasonably significant instructive messages sensible to end users and system administrators such as application and system state. No action is required by the user to correct an issue and/or error.

See Also:
Constant Field Values

WARNING

static final int WARNING
Constant value intended for logging warning messages. Warning messages include cautionary events that may indicate potential problems of interest to end users and system administrators such as approaching extreme resource levels. No or optional action is required by the user to correct an issue and/or error

See Also:
Constant Field Values

SEVERE

static final int SEVERE
Constant value intended for logging severe messages. Severe messages include events of considerable importance indicating an interrupt in normal program execution and/or serious failure that are reasonably intelligible to end users and system administrators. Action is required by the user to correct an unrecoverable error.

See Also:
Constant Field Values

NONE

static final int NONE
Constant value intended for logging no information.

See Also:
Constant Field Values
Method Detail

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         Throwable exception)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         String[] tokens)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         String[] tokens,
         Throwable exception)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         int[] tokens)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         int[] tokens,
         Throwable exception)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         String correlationValue)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         Throwable exception,
         String correlationValue)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         String[] tokens,
         String correlationValue)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         String[] tokens,
         Throwable exception,
         String correlationValue)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         int[] tokens,
         String correlationValue)

log

void log(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
         String msgCatalogId,
         int severity,
         int[] tokens,
         Throwable exception,
         String correlationValue)

prepareMessage

String prepareMessage(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
                      String msgCatalogId,
                      int severity,
                      String[] tokens)

prepareMessage

String prepareMessage(com.ibm.rational.test.lt.core.logging.ILTSubComponent subComponent,
                      String msgCatalogId,
                      int severity,
                      int[] tokens)

IBM Rational Performance Tester SDK

© Copyright IBM Corp. 2012. All rights reserved.