One core feature of spludo, is the powerful logging system. This system is entirely independent from spludo, so you may use it in your own (even non-spludo) nodejs project with ease.
Like described in the tutorial about configuration, you can easily add logging facality to every prototyped class:
DocsManager = function() {
// ...
}
extend(true, DocsManager.prototype, Logging.prototype);
DocsManager.prototype.logging_prefix = 'DocsManager';
It's important to add #logging_prefix, otherwise the methods won't know which class originally had the function implemented.
Usually you use it with just one parameter: