Skip Menu |

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

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

People
Owner: Nobody in particular
Requestors: andy [...] andybev.com
Cc:
AdminCc:

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



Subject: toString sometimes returns an object
Date: Thu, 7 Dec 2017 18:44:34 +0000
To: bug-Log-Report [...] rt.cpan.org
From: Andrew Beverley <andy [...] andybev.com>
toString has the following code: # fill-in the fields my $text = $self->{_expand} ? $domain->interpolate($format, $self) : ($self->{_prepend} // '') . $format . ($self->{_append} // ''); $text is then returned from the function. However, $self->{_prepend} (and presumably $self->{_append}) can sometimes (always?) be an object, so it is an object (via the object's concat overload) that is returned from the function in these cases, rather than a scalar string. Do you need some more information/examples?
Released as 1.24
Subject: Re: [rt.cpan.org #123835] toString sometimes returns an object
Date: Fri, 8 Dec 2017 08:59:05 +0000
To: bug-Log-Report [...] rt.cpan.org
From: Andrew Beverley <andy [...] andybev.com>
Show quoted text
> Released as 1.24
Thanks!