diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-06-21 22:06:36 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-06-28 22:42:00 +0200 |
commit | ee7ec91ac4306f255005f814250d97204afc0351 (patch) | |
tree | 91828fd95c99e8558a5c8ec5cc24d1780e82c1c4 /Bugzilla/Quantum/Plugin | |
parent | f7b2e26cd1c442bee789c5464241e5be1c05c1b6 (diff) | |
download | bugzilla-ee7ec91ac4306f255005f814250d97204afc0351.tar.gz bugzilla-ee7ec91ac4306f255005f814250d97204afc0351.tar.xz |
remove debugging
Diffstat (limited to 'Bugzilla/Quantum/Plugin')
-rw-r--r-- | Bugzilla/Quantum/Plugin/BlockIP.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Bugzilla/Quantum/Plugin/BlockIP.pm b/Bugzilla/Quantum/Plugin/BlockIP.pm index 512575b41..fbfffad66 100644 --- a/Bugzilla/Quantum/Plugin/BlockIP.pm +++ b/Bugzilla/Quantum/Plugin/BlockIP.pm @@ -31,7 +31,6 @@ sub _before_routes { return if $c->stash->{'mojo.static'}; my $ip = $c->tx->remote_address; - $c->app->log->debug("remote ip: $ip"); if ($MEMCACHED && $MEMCACHED->get("block_ip:$ip")) { $c->block_ip($ip); $c->res->code(429); |