aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/App/Controller/Alert.pm
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2011-05-12 14:49:47 +0100
committerStruan Donald <struan@exo.org.uk>2011-05-12 14:49:47 +0100
commit86d96e9047e20e2d92d2d5edbc9505d82eb6498c (patch)
treefb85af9a523e02543f313f9bfa916c138555d75a /perllib/FixMyStreet/App/Controller/Alert.pm
parentbae6a35bb125ccb372dde0b4a311b839095bd61e (diff)
remove unwanted debugging code
Diffstat (limited to 'perllib/FixMyStreet/App/Controller/Alert.pm')
-rw-r--r--perllib/FixMyStreet/App/Controller/Alert.pm5
1 files changed, 0 insertions, 5 deletions
diff --git a/perllib/FixMyStreet/App/Controller/Alert.pm b/perllib/FixMyStreet/App/Controller/Alert.pm
index 09f62d8ec..7ea3a1e7f 100644
--- a/perllib/FixMyStreet/App/Controller/Alert.pm
+++ b/perllib/FixMyStreet/App/Controller/Alert.pm
@@ -57,17 +57,12 @@ sub list : Path('list') : Args(0) {
$c->go('index') if $c->stash->{location_error};
}
- $c->log->debug($_)
- for ( $c->stash->{pc}, $c->stash->{latitude}, $c->stash->{longitude} );
-
$c->forward('prettify_pc');
# truncate the lat,lon for nicer urls
( $c->stash->{latitude}, $c->stash->{longitude} ) =
map { Utils::truncate_coordinate($_) }
( $c->stash->{latitude}, $c->stash->{longitude} );
- $c->log->debug($_)
- for ( $c->stash->{pc}, $c->stash->{latitude}, $c->stash->{longitude} );
$c->stash->{council_check_action} = 'alert';
unless ( $c->forward('/council/load_and_check_councils_and_wards') ) {