The logging connector interface.

interface ILoggingConnector {
    error(message, event): void;
    log(message, event): void;
    warn(message, event): void;
}

Methods

Methods

  • Logs an error with the specified data. Used to connect a custom logging system to log events from the SDK.

    Parameters

    Returns void

  • Logs a message with the specified data. Used to connect a custom logging system to log events from the SDK.

    Parameters

    Returns void

  • Logs a warning with the specified data. Used to connect a custom logging system to log events from the SDK.

    Parameters

    Returns void

Generated using TypeDoc