diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-04-29 08:57:14 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-04-29 08:57:14 +0100 |
commit | 554612942dfe36c90ddd2a1406e88b79ed710e7a (patch) | |
tree | d344e4f03a4a5f4e3e513cc6f36f4067790fbd1c | |
parent | 61e130783830050ac35093ad49c5fb2c75f12257 (diff) |
Don't print on London failure every time.
-rw-r--r-- | perllib/FixMyStreet/SendReport/London.pm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/SendReport/London.pm b/perllib/FixMyStreet/SendReport/London.pm index 6e7951922..2c48a091c 100644 --- a/perllib/FixMyStreet/SendReport/London.pm +++ b/perllib/FixMyStreet/SendReport/London.pm @@ -79,7 +79,6 @@ sub send { my $response = $browser->post( mySociety::Config::get('LONDON_REPORTIT_URL'), \%params ); my $out = $response->content; if ($response->code ne 200) { - print "Failed to post $h->{id} to London API, response was " . $response->code . " $out\n"; $self->error( "Failed to post $h->{id} to London API, response was " . $response->code . " $out" ); return 1; } |