Advertisement
tydeas_dr

yii framework config file log part

Apr 4th, 2011
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.02 KB | None | 0 0
  1.                 'log'=>array(
  2.                         'class'=>'CLogRouter',
  3.                         'routes'=>array(/**
  4.                                 array(
  5.                                         'class'=>'CFileLogRoute',
  6.                                         'levels'=>'error, warning',
  7.                                 ),
  8.                 ),),**/
  9.                                 // uncomment the following to show log messages on web pages
  10.                                 array(
  11.                                         'class'=>'CProfileLogRoute',
  12.                                         'enabled'=> YII_DEBUG,
  13.                                         'showInFireBug'=>true,
  14.                                 ),
  15.                                 array(
  16.                                         'class'=>'CWebLogRoute',
  17.                                         'enabled'=> YII_DEBUG,
  18.                                         'showInFireBug'=>true,
  19.                                 ),
  20.                         ),
  21.                 ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement