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

commonMain.com.copperleaf.ballast.test.internal.SimpleTestLogger.kt Maven / Gradle / Ivy

There is a newer version: 4.2.1
Show newest version
package com.copperleaf.ballast.test.internal

import com.copperleaf.ballast.BallastLogger

public class SimpleTestLogger : BallastLogger {
    // ignore debug messages
    override fun debug(message: String) {}

    // show info messages
    override fun info(message: String) {
        println(message)
    }

    // ignore errors
    override fun error(throwable: Throwable) {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy