removed two warning logs to prevent the unixserver logs from bloating up with the...
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 11 Dec 2006 16:19:01 +0000 (16:19 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 11 Dec 2006 16:19:01 +0000 (16:19 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@805 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/OpenSRF/Application.pm

index 2723690..0840f1e 100644 (file)
@@ -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 );