Skip to content

Commit

Permalink
Merge pull request #1607 from chadrien/patch-1
Browse files Browse the repository at this point in the history
Fix log classname in skeleton
  • Loading branch information
markstory committed Sep 5, 2013
2 parents 85e4716 + 7e28636 commit 6e67489
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Console/Templates/skel/Config/bootstrap.php
Expand Up @@ -89,12 +89,12 @@
*/
App::uses('CakeLog', 'Log');
CakeLog::config('debug', array(
'engine' => 'File',
'engine' => 'FileLog',
'types' => array('notice', 'info', 'debug'),
'file' => 'debug',
));
CakeLog::config('error', array(
'engine' => 'File',
'engine' => 'FileLog',
'types' => array('warning', 'error', 'critical', 'alert', 'emergency'),
'file' => 'error',
));

0 comments on commit 6e67489

Please sign in to comment.