Options
All
  • Public
  • Public/Protected
  • All
Menu

The Hazelcast logging interface.

Hierarchy

  • ILogger

Index

Methods

  • debug(objectName: string, message: string, furtherInfo?: any): void
  • 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

  • error(objectName: string, message: string, furtherInfo?: any): 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

  • info(objectName: string, message: string, furtherInfo?: any): 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

  • log(level: LogLevel, objectName: string, message: string, furtherInfo: any): 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

  • trace(objectName: string, message: string, furtherInfo?: any): 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

  • warn(objectName: string, message: string, furtherInfo?: any): 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