A Utility Class which provides a simple way to log messages from within other classes.
var MyClass = new Class({ Implements: Log });
MyClass.implement(Log);
var myLog = new Log;
var Test = new Class({ Implements: Log, initialize: function(){ this.log('Initializing test') } });
Passes a message to the logger.
myClass.log(msg[, msg[, msg[, ...]]])
This documentation is released under a Attribution-NonCommercial-ShareAlike 3.0 License.