From: tla Date: Thu, 12 Jun 2014 11:25:07 +0000 (+0200) Subject: disable stemmaweb request debug message X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2Fstemmaweb.git;a=commitdiff_plain;h=b7c3508f96338cf49f11f545119f822124875860;hp=e239d45f9ea50e2a3ee2e4575a6b5ea33eaa7dee disable stemmaweb request debug message --- diff --git a/lib/stemmaweb/Controller/Stemweb.pm b/lib/stemmaweb/Controller/Stemweb.pm index 75ae4d8..ad90815 100644 --- a/lib/stemmaweb/Controller/Stemweb.pm +++ b/lib/stemmaweb/Controller/Stemweb.pm @@ -288,7 +288,7 @@ sub request :Local :Args(0) { # Call to the appropriate URL with the request parameters. my $ua = LWP::UserAgent->new(); - $c->log->debug( 'Sending request to Stemweb: ' . to_json( $stemweb_request ) ); + # $c->log->debug( 'Sending request to Stemweb: ' . to_json( $stemweb_request ) ); my $resp = $ua->post( $self->stemweb_url . "/algorithms/process/$algorithm/", 'Content-Type' => 'application/json; charset=utf-8', 'Content' => encode_json( $stemweb_request ) );