[solved] Profile routing not working?

Using the latest from trunk.

In the config:



<?php


return array(


	'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',


	'name'=>'Yii Framework: Hello World Demo',


	'sourceLanguage'=>'en_us',


	'language'=>'es',





	'import'=>array(


      'system.logging.*',


	),





	'components'=>array(


	   'coreMessages'=>array(


	     'class'=>'system.i18n.CPhpMessageSource'


	   ),


      'messages'=>array(


         'class'=>'system.i18n.CGettextMessageSource',


         'useMoFile'=>false,


      ),


      'log'=>array(


            'class'=>'CLogRouter',


            'routes'=>array(


                         array(


                             'class'=>'CFileLogRoute',


                         ),


                         array(


                             'class'=>'CProfileLogRoute',


                             'report'=>'summary',


                             'showInFireBug'=>false,


                         ),


                      ),


             ),


   ),


);


In the view:



<?php


Yii::beginProfile('x');


$this->widget('application.extensions.cluetip.EClueTip',


              array(


                    'bindTo'=>'lb',


                    'options'=>array(


                                     'local'=>true,


                                     'fx'=>array('open'=>'slideDown')


                                    )


                   )


             );


Yii::endProfile('x');


?>


And nothing happens… [tt]'showInFireBug'=>true[/tt] doesn't make any difference. Is this a bug or am I doing something wrong here. It worked with pre 1.0.

You need this line in config.php: 'preload'=>array('log'),

Indeed, thanks  :-[