You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FingersCrossedHandler have an option to passthrough log line above certain level without writing out every other lines in the request.
The filtering logic check each buffered log line if it is above or equals to the passthrough level threshold.
The level has been changed to enum, which means a simple more-than comparison will no longer work.
Monolog version 3.2.1
FingersCrossedHandler have an option to passthrough log line above certain level without writing out every other lines in the request.
The filtering logic check each buffered log line if it is above or equals to the passthrough level threshold.
The level has been changed to enum, which means a simple more-than comparison will no longer work.
monolog/src/Monolog/Handler/FingersCrossedHandler.php
Lines 185 to 187 in b05bf55
Should be
or better
We should also update test to cover this case.
monolog/tests/Monolog/Handler/FingersCrossedHandlerTest.php
Lines 253 to 265 in b05bf55
The text was updated successfully, but these errors were encountered: