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

io.udash.logging.CrossLogger.scala Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
package io.udash.logging

trait CrossLogger {
  def debug(message: String, params: Any*): Unit
  def debug(message: String, cause: Throwable): Unit

  def info(message: String, params: Any*): Unit
  def info(message: String, cause: Throwable): Unit

  def warn(message: String, params: Any*): Unit
  def warn(message: String, cause: Throwable): Unit

  def error(message: String, params: Any*): Unit
  def error(message: String, cause: Throwable): Unit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy