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

com.criteo.cuttle.Logger.scala Maven / Gradle / Ivy

There is a newer version: 0.12.4
Show newest version
package com.criteo.cuttle

/** A logger used to output internal informations. */
trait Logger {
  def debug(message: => String): Unit
  def info(message: => String): Unit
  def warning(message: => String): Unit
  def error(message: => String): Unit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy