Database Profiling Execution Time

I am reading this: http://www.yiiframework.com/doc/guide/1.1/en/topics.logging#profiling-sql-executions

I have enabled sql profiling, I see all the requests eithers on the file log on the web log. However I do not see the claimed "measure the time spent in each SQL execution".

How do I see this?

I found my answer, I had to add this to my logs config:


array(

                                        'class'=>'CProfileLogRoute',

)

Now the only issue so far is how can I make the logs be in the logs file instead of the screen?

I am wondering the same thing for my project at the moment. Did you find a solution yet?