Skip Menu |

This queue is for tickets about the SOAP-Lite CPAN distribution.

Report information
The Basics
Id: 88915
Status: resolved
Priority: 0/
Queue: SOAP-Lite

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

Bug Information
Severity: Unimportant
Broken in: 1.06
Fixed in: 1.10



Subject: Subroutine SOAP::Trace::transport redefined when importing with +trace and methods
When using the SOAP::Lite with the +trace option a warning is thrown about redefined subroutines for each subroutine that you are using in the import. use strict; use warnings; use Data::Dumper; sub log_message { print Data::Dumper->Dump( [ $_[0] ], [ 'request_or_response' ] ) } use SOAP::Lite +trace => [ transport => \&log_message ];
While stumbling upon this bug, I noticed it was already fixed in 1.10 (commit https://github.com/redhotpenguin/soaplite/commit/5f446d478459c4ade843ca0144e69eb2785b43f0) Feel free to close this ticket. -- B10m