Node.js API
    Preparing search index...

    Type Alias PluginSDKOptions

    Configuration options for the PluginSDK constructor.

    import { PluginSDK, LoggerLevel } from '@logitech/plugin-sdk';

    // With custom log level
    const sdk = new PluginSDK({ logLevel: LoggerLevel.DEBUG });

    // Using default options
    const sdk = new PluginSDK();
    type PluginSDKOptions = {
        logLevel: LoggerLevel;
    }
    Index

    Properties

    Properties

    logLevel: LoggerLevel

    The logging level for the SDK. Controls the verbosity of log output. Defaults to LoggerLevel.WARN if not specified.

    LoggerLevel - Available logging levels