Created
December 3, 2011 05:10
-
-
Save jamband/1426131 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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