summaryrefslogtreecommitdiff
path: root/src/library/scala/util/logging/Logged.scala
blob: 1476c8bf089e576a334eb522255f07da457ceabc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2011, 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 = {}
}