ILoggerInstanceCallbacks

Callbacks for managing logger instance lifecycle and log events. Used by LoggerInstance to hook into initialization, disposal, and logging operations.

onInit: (clientId: string) => void

Called when the logger instance is initialized, typically during waitForInit.

onDispose: (clientId: string) => void

Called when the logger instance is disposed, cleaning up resources.

onLog: (clientId: string, topic: string, ...args: any[]) => void

Called when a log message is recorded via the log method.

onDebug: (clientId: string, topic: string, ...args: any[]) => void

Called when a debug message is recorded via the debug method.

onInfo: (clientId: string, topic: string, ...args: any[]) => void

Called when an info message is recorded via the info method.