From 12285086e61c93a84a963a4f421b72bae1fd4deb Mon Sep 17 00:00:00 2001 From: Andrew Bate Date: Wed, 31 Aug 2022 14:36:21 +0100 Subject: [PATCH] Change timingLog level from INFO to DEBUG (#138) Co-authored-by: Ross Singer --- src/mongo/base/DriverBase.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mongo/base/DriverBase.class.php b/src/mongo/base/DriverBase.class.php index 4473b04f..31a6eb13 100644 --- a/src/mongo/base/DriverBase.class.php +++ b/src/mongo/base/DriverBase.class.php @@ -281,7 +281,7 @@ public function getPodName() public function timingLog($type, $params=null) { $type = "[PID " . getmypid() ."] " . $type; - $this->log(\Psr\Log\LogLevel::INFO,$type,$params); // todo: timing log is a bit weird. Should it infact go in a different channel? Is it just debug? + $this->log(\Psr\Log\LogLevel::DEBUG,$type,$params); } /**