Yii::log without back trace

When use Yii::log the result is the message with backtrace.

So file info displayed in output (I use CWebLogRoute with showInFireBug=true)

I want to display messages without file tracing, for example


array

(

    'a' => '25'

    'b' => '169'

    'c' => 0

)

instead of


array

(

    'a' => '25'

    'b' => '169'

    'c' => 0

)


in

C:\wamp\www\project\protected\...Controller.php

(309)

...



How to achieve that ?

Thanks

in your index.php comment this part out and then try it


defined('YII_DEBUG') or define('YII_DEBUG',true);