How to log and debug variables using CWebLogRoute

Comparing #3 with #4

Content

[...]
```php
//
// In your index.php or your globals.php file
function fb($what){
echo Yii::trace(CVarDumper::dumpAsString($
thiswhat),'vardump');
}

//
// using the above examples now we could
$test = 'This is a test';
[...]