Configuration options for the PluginSDK constructor.
import { PluginSDK, LoggerLevel } from '@logitech/plugin-sdk';// With custom log levelconst sdk = new PluginSDK({ logLevel: LoggerLevel.DEBUG });// Using default optionsconst sdk = new PluginSDK(); Copy
import { PluginSDK, LoggerLevel } from '@logitech/plugin-sdk';// With custom log levelconst sdk = new PluginSDK({ logLevel: LoggerLevel.DEBUG });// Using default optionsconst sdk = new PluginSDK();
The logging level for the SDK. Controls the verbosity of log output. Defaults to LoggerLevel.WARN if not specified.
LoggerLevel - Available logging levels
Configuration options for the PluginSDK constructor.
Example