Class Summary | |
mixin abstract
|
class
ConsoleLogger
A ConsoleLogger is mixed into a concrete class who has class Logged among its base classes. |
mixin abstract
|
class
Logged
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.
|