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

com.gojek.courier.logging.ILogger.kt Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package com.gojek.courier.logging

interface ILogger {
    fun v(tag: String, msg: String)

    fun v(tag: String, msg: String, tr: Throwable)

    fun d(tag: String, msg: String)

    fun d(tag: String, msg: String, tr: Throwable)

    fun i(tag: String, msg: String)

    fun i(tag: String, msg: String, tr: Throwable)

    fun w(tag: String, msg: String)

    fun w(tag: String, msg: String, tr: Throwable)

    fun w(tag: String, tr: Throwable)

    fun e(tag: String, msg: String)

    fun e(tag: String, msg: String, tr: Throwable)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy