Skip Menu |

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

Report information
The Basics
Id: 75791
Status: new
Priority: 0/
Queue: Catalyst-Plugin-Log-Dispatch

People
Owner: Nobody in particular
Requestors: BBYRD [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.121
Fixed in: (no value)



Subject: Missing log levels in loop
foreach my $l (qw/debug info warn error fatal/) { my $name = $l; $name = 'warning' if ( $name eq 'warn' ); $name = 'critical' if ( $name eq 'fatal' ); Log::Dispatch has more log levels than this. This is missing "notice alert emergency". The synonyms are also missing: "err crit emerg", but you have warn/fatal. As it is now, the notices are going unbuffered, and the rest come in AFTERWARDS, which makes things really off-sync.