The Hazelcast logging interface.

Hierarchy

  • ILogger

Methods

  • Logs a message with an associated objectName and furtherInfo at the debug level.

    Parameters

    • objectName: string

      name of the object in which the message is logged

    • message: string

      the message to log

    • Optional furtherInfo: any

      further info about the log

    Returns void

  • Logs a message with an associated objectName and furtherInfo at the error level.

    Parameters

    • objectName: string

      name of the object in which the message is logged

    • message: string

      the message to log

    • Optional furtherInfo: any

      further info about the log

    Returns void

  • Logs a message with an associated objectName and furtherInfo at the info level.

    Parameters

    • objectName: string

      name of the object in which the message is logged

    • message: string

      the message to log

    • Optional furtherInfo: any

      further info about the log

    Returns void

  • Logs a message with an associated objectName and furtherInfo at the given level.

    Parameters

    • level: LogLevel

      the log level

    • objectName: string

      name of the object in which the message is logged

    • message: string

      the message to log

    • furtherInfo: any

      further info about the log

    Returns void

  • Logs a message with an associated objectName and furtherInfo at the trace level.

    Parameters

    • objectName: string

      name of the object in which the message is logged

    • message: string

      the message to log

    • Optional furtherInfo: any

      further info about the log

    Returns void

  • Logs a message with an associated objectName and furtherInfo at the warn level.

    Parameters

    • objectName: string

      name of the object in which the message is logged

    • message: string

      the message to log

    • Optional furtherInfo: any

      further info about the log

    Returns void

Generated using TypeDoc