From: erickson Date: Mon, 25 Oct 2010 16:28:23 +0000 (+0000) Subject: log message processing duration at INFO level, instead of DEBUG, consistent with... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5bf16a2a0e88148868fcd3aa3b73acf1af94e431;p=opensrf%2Fbjwebb.git log message processing duration at INFO level, instead of DEBUG, consistent with the C libs git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@2047 9efc2488-bf62-4759-914b-345cdb29e865 --- diff --git a/src/perl/lib/OpenSRF/Transport.pm b/src/perl/lib/OpenSRF/Transport.pm index 6a3afef..8d0dc74 100644 --- a/src/perl/lib/OpenSRF/Transport.pm +++ b/src/perl/lib/OpenSRF/Transport.pm @@ -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; }