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

com.amplitude.common.Logger.kt Maven / Gradle / Ivy

The newest version!
package com.amplitude.common

interface Logger {
    enum class LogMode(i: Int) {
        DEBUG(1),
        INFO(2),
        WARN(3),
        ERROR(4),
        OFF(5)
    }

    var logMode: LogMode

    fun debug(message: String)

    fun error(message: String)

    fun info(message: String)

    fun warn(message: String)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy