ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Enumeration LogLevel

    Available logging levels in ascending order of severity: DEBUG → INFO → WARN → ERROR

    const logger = new Logger('App');
    logger.debug('This is a debug message');
    export enum LogLevel {
    /** Detailed information for debugging purposes */
    DEBUG = "debug",
    /** General information about program execution */
    INFO = "info",
    /** Potentially harmful situations that don't affect program execution */
    WARN = "warn",
    /** Error conditions that affect program execution */
    ERROR = "error",
    }
    Index

    Enumeration Members

    Enumeration Members

    DEBUG: "debug"

    Detailed information for debugging purposes

    INFO: "info"

    General information about program execution

    WARN: "warn"

    Potentially harmful situations that don't affect program execution

    ERROR: "error"

    Error conditions that affect program execution