in scala.util.logging
trait Logged

abstract trait Logged
extends java.lang.Object
with scala.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.
Direct known subclasses:
ValidatingMarkupHandler, MarkupHandler, LoggedNodeFactory

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.
Parameters:
msg - ...