- correction of a hook in the Logger, which made this module incompatible with perl 5.10.5 / debian squeeze


			
			
				environments/ppa-mbqj77/deployments/1
			
			
		
David COUTADEUR 11 years ago
parent 66d3a96dd1
commit 59f0b9e5d4
  1. 3
      lemonldap-ng-handler/lib/Lemonldap/NG/Handler/Main/Logger.pm

@ -12,7 +12,8 @@ sub lmLog {
die("Level is required") unless ($level);
my $call;
my @tmp = caller();
my $module = $tmp[0] =~ s/.+:://gr . "($tmp[2]): ";
(my $module = $tmp[0]) =~ s/.+:://g;
$module .= "($tmp[2]): ";
unless ( $level eq 'debug' ) {
$call = "$tmp[1] $tmp[2]:";
}

Loading…
Cancel
Save