Variable LoggerInstanceConst

LoggerInstance: new (
    clientId: string,
    callbacks: Partial<ILoggerInstanceCallbacks>,
) => {
    callbacks: Partial<ILoggerInstanceCallbacks>;
    clientId: string;
    debug(topic: string, ...args: any[]): void;
    dispose(): void;
    info(topic: string, ...args: any[]): void;
    log(topic: string, ...args: any[]): void;
    waitForInit(): Promise<void>;
}

Manages logging operations for a specific client, with customizable callbacks and console output. Implements ILoggerInstance for client-specific logging with lifecycle management. Integrates with GLOBAL_CONFIG for console logging control and callbacks for custom behavior.

Type declaration

    • new (
          clientId: string,
          callbacks: Partial<ILoggerInstanceCallbacks>,
      ): {
          callbacks: Partial<ILoggerInstanceCallbacks>;
          clientId: string;
          debug(topic: string, ...args: any[]): void;
          dispose(): void;
          info(topic: string, ...args: any[]): void;
          log(topic: string, ...args: any[]): void;
          waitForInit(): Promise<void>;
      }
    • Parameters

      Returns {
          callbacks: Partial<ILoggerInstanceCallbacks>;
          clientId: string;
          debug(topic: string, ...args: any[]): void;
          dispose(): void;
          info(topic: string, ...args: any[]): void;
          log(topic: string, ...args: any[]): void;
          waitForInit(): Promise<void>;
      }

      • Readonlycallbacks: Partial<ILoggerInstanceCallbacks>
      • ReadonlyclientId: string
      • debug:function
        • Logs a debug message to the console (if enabled) and invokes the onDebug callback if provided. Controlled by GLOBAL_CONFIG.CC_LOGGER_ENABLE_CONSOLE for console output.

          Parameters

          • topic: string

            The topic or category of the debug message.

          • ...args: any[]

            Additional arguments to include in the debug log.

          Returns void

      • dispose:function
        • Disposes of the logger instance, invoking the onDispose callback if provided. Performs synchronous cleanup without additional resource management.

          Returns void

          No return value, operation is synchronous.

      • info:function
        • Logs an info message to the console (if enabled) and invokes the onInfo callback if provided. Controlled by GLOBAL_CONFIG.CC_LOGGER_ENABLE_CONSOLE for console output.

          Parameters

          • topic: string

            The topic or category of the info message.

          • ...args: any[]

            Additional arguments to include in the info log.

          Returns void

      • log:function
        • Logs a message to the console (if enabled) and invokes the onLog callback if provided. Controlled by GLOBAL_CONFIG.CC_LOGGER_ENABLE_CONSOLE for console output.

          Parameters

          • topic: string

            The topic or category of the log message.

          • ...args: any[]

            Additional arguments to include in the log.

          Returns void

      • waitForInit:function
        • Initializes the logger instance, invoking the onInit callback if provided. Ensures initialization is performed only once, memoized via singleshot.

          Returns Promise<void>

          A promise that resolves when initialization is complete.