-
I went through the commit history but wasn't able to find something useful. yii2/framework/base/ErrorHandler.php Lines 350 to 359 in 47fb7fc I am trying to filter out one of my HTTP Exceptions in a log, but do not want to filter out all of them. The only way to do that is to extend the error handler class but what is the reason for this change to begin with? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The only reason I can think of is that it may be for the purpose of grouping all such exceptions together and route these by category into separate log target. |
Beta Was this translation helpful? Give feedback.
The only reason I can think of is that it may be for the purpose of grouping all such exceptions together and route these by category into separate log target.