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

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

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

import androidx.annotation.RestrictTo

@RestrictTo(RestrictTo.Scope.LIBRARY)
class NoOpLogger : ILogger {
    override fun v(tag: String, msg: String) {
    }

    override fun v(tag: String, msg: String, tr: Throwable) {
    }

    override fun d(tag: String, msg: String) {
    }

    override fun d(tag: String, msg: String, tr: Throwable) {
    }

    override fun i(tag: String, msg: String) {
    }

    override fun i(tag: String, msg: String, tr: Throwable) {
    }

    override fun w(tag: String, msg: String) {
    }

    override fun w(tag: String, msg: String, tr: Throwable) {
    }

    override fun w(tag: String, tr: Throwable) {
    }

    override fun e(tag: String, msg: String) {
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy