and question is How can i ignore some cateories rom log router defined categories?
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning', //logging all errors and warnings
),
array(
'class'=>'CEmailLogRoute',
'levels'=>'error', // send to emails only errors
'email'=>'admin@example.com',
'categories'=>'!exception.CHttpException.404' // and here i want to put ignore statement to not send 404 errors
),
),
),can i do that somehow?
or there i should do some workaround.
maybe i can remove " exception.CHttpException.* " from error category. this would resolve my problem as well.

Help


















