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

org.http4k.tracing.junit.console.kt Maven / Gradle / Ivy

package org.http4k.tracing.junit

import org.http4k.tracing.TraceCompletion.complete
import org.http4k.tracing.TraceCompletion.incomplete
import org.http4k.tracing.TraceReporter

val TraceReporter.Companion.PrintToConsole
    get() = TraceReporter { location, completion, render ->
        val message = "Stored $completion ${render.format} trace @ $location"
        when (completion) {
            complete -> println(message)
            incomplete -> System.err.println(message)
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy