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

commonMain.io.kotest.mpp.logger.kt Maven / Gradle / Ivy

There is a newer version: 4.0.7
Show newest version
package io.kotest.mpp

private fun enabled() = sysprop("KOTEST_DEBUG") != null || env("KOTEST_DEBUG") != null

fun log(msg: String) = log(msg, null)

fun log(msg: String, t: Throwable?) {
   if (enabled()) {
      println(msg)
      if (t != null) println(t)
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy