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

    Class ServiceLoggers

    Service-specific loggers for the Datalayer VS Code extension. Provides organized access to different logging channels with clear separation.

    Index
    • Get all available logger channel names. Useful for debugging and configuration.

      Returns string[]

      Array of channel names.

    • Create a custom logger with a specific channel name. Use this for new services or components that don't have a predefined logger.

      Parameters

      • channelName: string

        Name of the logging channel.

      Returns ILogger

      Logger instance.

    • Initialize the service loggers with a LoggerManager instance. Must be called during extension activation before using any loggers.

      Parameters

      Returns void

    • Check if ServiceLoggers has been initialized.

      Returns boolean

      True if initialize() has been called with a LoggerManager.