Skip to content

Instantly share code, notes, and snippets.

@jamband
Created December 3, 2011 05:10
Show Gist options
  • Save jamband/1426131 to your computer and use it in GitHub Desktop.
Save jamband/1426131 to your computer and use it in GitHub Desktop.
<?php
return array(
...
'components' => array(
...
'db' => array(
...
'enableProfiling' => true,
'enableParamLogging' => true,
),
...
'log' => array(
'class' => 'CLogRouter',
'routes' => array(
array(
'class' => 'CFileLogRoute',
'levels' => 'error, warning',
),
array(
'class' => 'ext.db_profiler.DbProfileLogRoute',
'countLimit' => 1,
'slowQueryMin' => 0.005,
),
),
),
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment