| Dancer documentation | Contained in the Dancer distribution. |
Dancer::Logger::Null - blackhole-like silent logging engine for Dancer
This logger acts as a blackhole (or /dev/null, if you will) that discards all the log messages instead of displaying them anywhere.
Discards the message.
Alexis Sukrieh
Copyright 2009-2010 Alexis Sukrieh.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
| Dancer documentation | Contained in the Dancer distribution. |
package Dancer::Logger::Null; use strict; use warnings; use base 'Dancer::Logger::Abstract'; sub _log {1} 1; __END__