Node.js API
    Preparing search index...

    Enumeration LoggerLevel

    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 warnings
    logger.setLevel(LoggerLevel.WARN);
    Index

    Enumeration Members

    Enumeration Members

    DEBUG: 3

    Detailed debugging information

    ERROR: 0

    Critical errors that may cause the plugin to malfunction

    INFO: 2

    General informational messages

    WARN: 1

    Warning messages for non-critical issues