in scala.util.logging
class Logged

mixin abstract class Logged
extends java.lang.Object
with ScalaObject
Mixing in the class Logged indicates that a class provides support for logging. For instance, a developer of a library writes class MyClass with Logged { ... do stuff, call log } The user of the library instantiates: val x = new MyClass() with ConsoleLogger; and the logging will be sent to the Console.

Def Summary
def log ( msg : java.lang.String ) : scala.Unit
this method should log the message given as argument somewhere as a side-effect


Def Detail
def log ( msg : java.lang.String ) : scala.Unit
this method should log the message given as argument somewhere as a side-effect