Dancer::Logger::Null - blackhole-like silent logging engine for Dancer


Dancer documentation Contained in the Dancer distribution.

Index


Code Index:

NAME

Top

Dancer::Logger::Null - blackhole-like silent logging engine for Dancer

SYNOPSIS

Top

DESCRIPTION

Top

This logger acts as a blackhole (or /dev/null, if you will) that discards all the log messages instead of displaying them anywhere.

METHODS

Top

_log

Discards the message.

AUTHOR

Top

Alexis Sukrieh

LICENSE AND COPYRIGHT

Top


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__