diff options
author | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-15 08:58:22 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-08-15 15:19:21 +0100 |
commit | 310a46ece56eb8327a1b38a3afc011eb3911e8ac (patch) | |
tree | bd27435fd8f5c5bfc1cd9717a1979a957d7158b7 /perllib/FixMyStreet/App/Controller/Location.pm | |
parent | 6587206978a5a5afcfef0acd0238215a710034cc (diff) |
Remove a couple of debug lines.
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Location.pm')
-rw-r--r-- | perllib/FixMyStreet/App/Controller/Location.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Location.pm b/perllib/FixMyStreet/App/Controller/Location.pm index 6a0f2c0ec..c457c8fce 100644 --- a/perllib/FixMyStreet/App/Controller/Location.pm +++ b/perllib/FixMyStreet/App/Controller/Location.pm @@ -31,8 +31,6 @@ sub determine_location_from_coords : Private { my $latitude = $c->get_param('latitude') || $c->get_param('lat'); my $longitude = $c->get_param('longitude') || $c->get_param('lon'); - $c->log->debug($longitude); - $c->log->debug($latitude); if ( defined $latitude && defined $longitude ) { ($c->stash->{latitude}, $c->stash->{longitude}) = |