id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1427	Debug::Client 0.20 test failures against win32 or not!	bowtie	bowtie	"Somebody has been a silly billy!

FAIL Debug-Client-0.20 v5.12.4 Windows (Win32)
http://www.cpantesters.org/cpan/report/13fea170-288c-1018-94c9-b89d05085451

FAIL Debug-Client-0.20 v5.14.2 Windows (Win32)
http://www.cpantesters.org/cpan/report/ae735264-92fd-1018-8c44-1c9b05085451

both fail with 

Use of uninitialized value $ret in concatenation (.) or string at C:\CPANTesters\cpan\build\Debug-Client-0.20-jzpnsb\blib\lib/Debug/Client.pm line 497.

{{{#!perl
_logger(""---- ret $ret\n$buffer\n---"");
}}}

This can only happen if 

{{{#!perl
#######
# Internal Method _logger
#######
sub _logger {
    print ""LOG: $_[0]\n"" if $ENV{DEBUG_LOGGER};
    return;
}
}}}

hence this module is failing due to an env bleed issue.


Not sure weather to change to following or just remove the _logger code compleatly
{{{#!perl
#######
# Internal Method _logger
#######
sub _logger {
    print ""LOG: $_[0]\n"" if $self->{debug};
    return;
}
}}}

This just reaffirms why I hate win32 as it's put red bits in my nice green world :)
http://matrix.cpantesters.org/?dist=Debug-Client%200.20

"	enhancement	closed	minor		Debug::Client		fixed		
