Datalayer VS Code Extension - v0.0.4
    Preparing search index...

    Logger manager interface for managing multiple log channels. Implementations should provide logger creation and configuration.

    interface ILoggerManager {
        clearAll(): void;
        createLogger(channelName: string): ILogger;
        dispose(): void;
        getConfig(): LoggerConfig;
        setConfig(config: Partial<LoggerConfig>): void;
        showChannel(channelName?: string): void;
    }

    Implemented by

    Index

    Methods