
com.amplitude.common.Logger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of analytics-core Show documentation
Show all versions of analytics-core Show documentation
Amplitude Kotlin Core library
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