Enumeration of available logging levels.
Defines the severity levels for log messages, with lower numeric values indicating higher priority/severity levels.
import { LoggerLevel } from '@logitech/plugin-sdk';// Set logging level to show only errors and warningslogger.setLevel(LoggerLevel.WARN); Copy
import { LoggerLevel } from '@logitech/plugin-sdk';// Set logging level to show only errors and warningslogger.setLevel(LoggerLevel.WARN);
Detailed debugging information
Critical errors that may cause the plugin to malfunction
General informational messages
Warning messages for non-critical issues
Enumeration of available logging levels.
Defines the severity levels for log messages, with lower numeric values indicating higher priority/severity levels.
Example