Skip Menu |

This queue is for tickets about the CGI-Application-Plugin-LogDispatch CPAN distribution.

Report information
The Basics
Id: 19917
Status: resolved
Priority: 0/
Queue: CGI-Application-Plugin-LogDispatch

People
Owner: Nobody in particular
Requestors: victor [...] taquiones.net
Cc:
AdminCc:

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



Subject: Wrong assert in log_config method
This condition is wrong: if (ref $self) { die "Calling log_config after the log object has already been created" if @_ && defined $self->{__LOG}; $log_config = $self->{__LOG_CONFIG} ||= {}; } else { should be: if (ref $self) { die "Calling log_config after the log object has already been created" if @_ && defined $self->{__LOG_CONFIG}; $log_config = $self->{__LOG_CONFIG} ||= {}; } else { Change the hash key from __LOG to __LOG_CONFIG