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

scala.util.logging.Logged.scala Maven / Gradle / Ivy

There is a newer version: 2.11.2
Show newest version
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2013, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

package scala.util.logging

/** Mixing in Logged indicates that a class provides support for logging.
  *
  * For instance:
  * {{{
  * // The developer of the library writes:
  * class MyClass extends Logged {
  *   // do stuff, call log
  * }
  *
  * // The user of the library instantiates:
  * val x = new MyClass() with ConsoleLogger
  * }}}
  * and the logging is sent to the [[scala.util.logging.ConsoleLogger]] object.
  */
@deprecated("This class will be removed.", "2.10.0")
trait Logged {
  /** This method should log the message given as argument somewhere
   *  as a side-effect.
   *
   *  @param msg  message to be logged
   */
  def log(msg: String): Unit = {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy