Log::Dispatch::File - Object that accepts messages and does nothing


NAME

Log::Dispatch::File - Object that accepts messages and does nothing


SYNOPSIS

  use Log::Dispatch::Null;
  my $null = Log::Dispatch::Null->new( name      => 'null',
                                       min_level => 'info' );
  $null->log( level => 'emerg', message => "I've fallen and I can't get up\n" );


DESCRIPTION

This class provides a null logging object. Messages can be sent to the object but it does nothing with them.


METHODS


AUTHOR

Dave Rolsky, <autarch@urth.org>

 Log::Dispatch::File - Object that accepts messages and does nothing