All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.io.github.jan.supabase.logging.LogLevel.kt Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.github.jan.supabase.logging

/**
 * Represents a log level
 *
 */
enum class LogLevel {
    /**
     * Debug log level
     */
    DEBUG,

    /**
     * Info log level
     */
    INFO,

    /**
     * Warning log level
     */
    WARNING,
    /**
     * Error log level
     */
    ERROR,

    /**
     * No log level
     */
    NONE,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy