
interchange-cvs at icdevgroup
May 13, 2010, 1:53 PM
Post #1 of 1
(280 views)
Permalink
|
|
[interchange] Remove extraneous "my" declaration which was causing unnecessary noise in the logs
|
|
commit 956b727c0af4a09ecbd16c966e71fd24a27bdca9 Author: David Christensen <david [at] endpoint> Date: Thu May 13 15:52:58 2010 -0500 Remove extraneous "my" declaration which was causing unnecessary noise in the logs lib/Vend/Error.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- diff --git a/lib/Vend/Error.pm b/lib/Vend/Error.pm index 3be8bec..29b0541 100644 --- a/lib/Vend/Error.pm +++ b/lib/Vend/Error.pm @@ -185,7 +185,7 @@ sub do_lockout { # Now we log the error after custom lockout routine gets chance # to bypass my $pause = $::Limit->{lockout_reset_seconds} || 30; - my $msg = errmsg( + $msg = errmsg( "WARNING: POSSIBLE BAD ROBOT. %s accesses with no %d second pause.", $Vend::Session->{accesses}, $pause, _______________________________________________ interchange-cvs mailing list interchange-cvs [at] icdevgroup http://www.icdevgroup.org/mailman/listinfo/interchange-cvs
|