Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Log-Dispatch CPAN distribution.

Report information
The Basics
Id: 84123
Status: resolved
Priority: 0/
Queue: Log-Dispatch

People
Owner: Nobody in particular
Requestors: calyx238 [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: (no value)
Fixed in: (no value)



Subject: Synopsis in Log::Dispatch::Null does not work
use Log::Dispatch; my $null = Log::Dispatch->new( outputs => [ ['Null'] ] ); $null->emerg( "I've fallen and I can't get up" ); Produces: Mandatory parameter 'min_level' missing in call to Log::Dispatch::Output::_basic_init at ...../Params/Validate/XS.pm line 8. Needs to be something like: my $null = Log::Dispatch->new( outputs => [ ['Null', min_level => 'debug'] ] );
Thanks, I checked in a fix for this.