lily
    Preparing search index...

    Enumeration LogLevel

    log severity levels in ascending order. higher numbers indicate more severe issues.

    if (LogLevel.ERROR >= LogLevel.WARN) {
    // error level includes warnings and above
    }
    Index

    Enumeration Members

    Enumeration Members

    DEBUG: 1

    debug information for development and troubleshooting

    ERROR: 4

    error messages for error conditions that allow the application to continue

    FATAL: 5

    critical errors that may cause the application to terminate

    INFO: 2

    general informational messages that highlight application progress

    OFF: 6

    disable all logging output

    TRACE: 0

    detailed debugging information, typically only of interest when diagnosing problems

    WARN: 3

    warning messages for potentially harmful situations