log message processing duration at INFO level, instead of DEBUG, consistent with...
authorerickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 25 Oct 2010 16:28:23 +0000 (16:28 +0000)
committererickson <erickson@9efc2488-bf62-4759-914b-345cdb29e865>
Mon, 25 Oct 2010 16:28:23 +0000 (16:28 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2047 9efc2488-bf62-4759-914b-345cdb29e865

src/perl/lib/OpenSRF/Transport.pm

index 6a3afef..8d0dc74 100644 (file)
@@ -181,7 +181,7 @@ sub handler {
 
        }
 
-       $logger->debug(sprintf("Message processing duration: %.3fs",(time() - $start_time)), DEBUG);
+       $logger->info(sprintf("Message processing duration: %.3fs", (time() - $start_time)));
 
        return $app_session;
 }