Skip Menu |

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

Report information
The Basics
Id: 1619
Status: resolved
Priority: 0/
Queue: Log-Agent

People
Owner: mrogaski [...] cpan.org
Requestors: mrogaski [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.2.8
Fixed in: 0.304



Subject: Multiline messages are truncated by logcroak()
It seems that multiline error messages are handled differently by Log::Agent: use Carp; use Log::Agent; eval { croak "Multiline\ncroak" }; $die1 = $@; eval { logcroak "Multiline\ncroak" }; $die2 = $@; print "not " if $die1 ne $die2; print "ok 1\n"; __END__ I think this should be fixed in Log::Agent, but I can make the failing Storable tests skip if Log::Agent is loaded. Regards, Slaven