When specifying categories for a log route, it would be nice if one could exclude certain categories. For example:
'categories' => 'exception.*, !exception.CHttpException',
This would log all exceptions except CHttpException.
When specifying categories for a log route, it would be nice if one could exclude certain categories. For example:
'categories' => 'exception.*, !exception.CHttpException',
This would log all exceptions except CHttpException.
In case anyone else needs this, it has been implemented in 1.1.13 by means of CLogRoute::except property.