Interface ILoggerAdapter

Interface defining methods for interacting with a logger adapter. Implemented by LoggerUtils to provide client-specific logging operations.

interface ILoggerAdapter {
    debug(clientId: string, topic: string, ...args: any[]): Promise<void>;
    dispose(clientId: string): Promise<void>;
    info(clientId: string, topic: string, ...args: any[]): Promise<void>;
    log(clientId: string, topic: string, ...args: any[]): Promise<void>;
}

Methods

  • Logs a debug message for a client using the client-specific logger instance. Ensures session validation and initialization before logging.

    Parameters

    • clientId: string

      The client ID associated with the debug log.

    • topic: string

      The debug topic or category.

    • ...args: any[]

      Additional arguments to debug log.

    Returns Promise<void>

    A promise that resolves when the debug message is recorded.

  • Disposes of the logger instance for a client, clearing it from the cache. Ensures initialization before disposal.

    Parameters

    • clientId: string

      The client ID to dispose.

    Returns Promise<void>

    A promise that resolves when disposal is complete.

  • Logs an info message for a client using the client-specific logger instance. Ensures session validation and initialization before logging.

    Parameters

    • clientId: string

      The client ID associated with the info log.

    • topic: string

      The info topic or category.

    • ...args: any[]

      Additional arguments to info log.

    Returns Promise<void>

    A promise that resolves when the info message is recorded.

  • Logs a message for a client using the client-specific logger instance. Ensures session validation and initialization before logging.

    Parameters

    • clientId: string

      The client ID associated with the log.

    • topic: string

      The log topic or category.

    • ...args: any[]

      Additional arguments to log.

    Returns Promise<void>

    A promise that resolves when the log is recorded.