Class ErrorLogMessage

java.lang.Object
com.unboundid.ldap.sdk.unboundidds.logs.LogMessage
com.unboundid.ldap.sdk.unboundidds.logs.ErrorLogMessage
All Implemented Interfaces:
Serializable

This class provides a data structure that holds information about a log message that may appear in the Directory Server error log.
NOTE: This class, and other classes within the com.unboundid.ldap.sdk.unboundidds package structure, are only supported for use against Ping Identity, UnboundID, and Nokia/Alcatel-Lucent 8661 server products. These classes provide support for proprietary functionality or for external specifications that are not considered stable or mature enough to be guaranteed to work in an interoperable way with other types of LDAP servers.
See Also:
  • Constructor Details

    • ErrorLogMessage

      Creates a new error log message from the provided message string.
      Parameters:
      s - The string to be parsed as an error log message.
      Throws:
      LogException - If the provided string cannot be parsed as a valid log message.
    • ErrorLogMessage

      Creates a new error log message from the provided message string.
      Parameters:
      m - The log message to be parsed as an error log message.
  • Method Details

    • getProductName

      Retrieves the server product name for this error log message.
      Returns:
      The server product name for this error log message, or null if it is not included in the log message.
    • getInstanceName

      Retrieves the Directory Server instance name for this error log message.
      Returns:
      The Directory Server instance name for this error log message, or null if it is not included in the log message.
    • getStartupID

      Retrieves the Directory Server startup ID for this error log message.
      Returns:
      The Directory Server startup ID for this error log message, or null if it is not included in the log message.
    • getCategory

      Retrieves the category for this error log message.
      Returns:
      The category for this error log message, or null if it is not included in the log message.
    • getSeverity

      Retrieves the severity for this error log message.
      Returns:
      The severity for this error log message, or null if it is not included in the log message.
    • getMessageID

      Retrieves the numeric identifier for this error log message.
      Returns:
      The numeric identifier for this error log message, or null if it is not included in the log message.
    • getTriggeredByConnectionID

      Retrieves the connection ID for the operation currently being processed by the thread that generated this error log message.
      Returns:
      The connection ID for the operation currently being processed by the thread that generated this error log message, or null if it is not included in the log message.
    • getTriggeredByOperationID

      Retrieves the operation ID for the operation currently being processed by the thread that generated this error log message.
      Returns:
      The operation ID for the operation currently being processed by the thread that generated this error log message, or null if it is not included in the log message.
    • getMessage

      Retrieves the message text for this error log message.
      Returns:
      The message text for this error log message, or null if it is not included in the log message.