Skip to content

Commit

Permalink
Change timingLog level from INFO to DEBUG (#138)
Browse files Browse the repository at this point in the history
Co-authored-by: Ross Singer <[email protected]>
  • Loading branch information
astilla and rsinger authored Aug 31, 2022
1 parent 1d24de0 commit 1228508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mongo/base/DriverBase.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 1228508

Please sign in to comment.