A logging interface for those SDK users that want to create their own logging behaviour.

While all of the input parameters are classified as unknown typically input falls into the categories of string, object or Error.

Hierarchy

  • Logger

Accessors

Methods

Accessors

Methods

  • Used when attempting to diagnose a specific problem.

    Parameters

    • Optional message: unknown

      The message to log.

    • Rest ...optionalParams: unknown[]

      One or more optional params. Examples may include JSON data or Error objects.

    Returns void

  • Used for unexpected conditions where recovery is not possible.

    Parameters

    • Optional message: unknown

      The message to log.

    • Rest ...optionalParams: unknown[]

      One or more optional params. Examples may include JSON data or Error objects.

    Returns void

  • Used for routine messages that happen during the course of ordinary operation.

    Parameters

    • Optional message: unknown

      The message to log.

    • Rest ...optionalParams: unknown[]

      One or more optional params. Examples may include JSON data or Error objects.

    Returns void

  • Used for unexpected conditions where recovery may be possible.

    Parameters

    • Optional message: unknown

      The message to log.

    • Rest ...optionalParams: unknown[]

      One or more optional params. Examples may include JSON data or Error objects.

    Returns void

Generated using TypeDoc