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

lgab.snunit-plugins-shared_2.12.0.10.3.source-code.Logger.scala Maven / Gradle / Ivy

The newest version!
package snunit.plugin

trait Logger {
  def info(s: String): Unit
  def warn(s: String): Unit
  def error(s: String): Unit
}
object Logger {
  def stderr = new Logger {
    def info(s: String): Unit = System.err.println(s"[info] $s")
    def warn(s: String): Unit = System.err.println(s"[warn] $s")
    def error(s: String): Unit = System.err.println(s"[error] $s")
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy