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

commonMain.NoopLogger.kt Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package com.juul.datadog

public class NoopLogger : Logger {

    override fun debug(message: String, attributes: Map?, throwable: Throwable?) {
        // No-op
    }

    override fun info(message: String, attributes: Map?, throwable: Throwable?) {
        // No-op
    }

    override fun warn(message: String, attributes: Map?, throwable: Throwable?) {
        // No-op
    }

    override fun error(message: String, attributes: Map?, throwable: Throwable?) {
        // No-op
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy