From: erickson Date: Mon, 11 Dec 2006 16:19:01 +0000 (+0000) Subject: removed two warning logs to prevent the unixserver logs from bloating up with the... X-Git-Tag: osrf_rel_2_0_1~1072 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=dd06e7be664f411b54be8ff369c9d4b3fa369017;p=OpenSRF.git removed two warning logs to prevent the unixserver logs from bloating up with the warnings git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@805 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/perlmods/OpenSRF/Application.pm b/src/perlmods/OpenSRF/Application.pm index 2723690..0840f1e 100644 --- a/src/perlmods/OpenSRF/Application.pm +++ b/src/perlmods/OpenSRF/Application.pm @@ -10,6 +10,7 @@ use Data::Dumper; use Time::HiRes qw/time/; use OpenSRF::EX qw/:try/; use Carp; +use JSON; #use OpenSRF::UnixServer; # to get the server class from UnixServer::App sub DESTROY{}; @@ -164,9 +165,7 @@ sub handler { } my $start = time(); - warn "About to run...\n"; $resp = $coderef->run( $appreq, @args); - warn "Done running...\n"; my $time = sprintf '%.3f', time() - $start; $log->debug( "Method duration for [$method_name]: ". $time );