Skip to content

Commit

Permalink
Fix log engine name
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Jun 24, 2014
1 parent 4844119 commit 5a33574
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Config/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,19 +98,19 @@
App::uses('CakeLog', 'Log');

CakeLog::config('debug', array(
'engine' => 'FileLog',
'engine' => 'File',
'types' => array('notice', 'info', 'debug'),
'file' => 'debug',
));

CakeLog::config('error', array(
'engine' => 'FileLog',
'engine' => 'File',
'types' => array('warning', 'error', 'critical', 'alert', 'emergency'),
'file' => 'error',
));

CakeLog::config('sourceforge', array(
'engine' => 'FileLog',
'engine' => 'File',
'types' => array('sourceforge'),
'scopes' => array('sourceforge'),
'file' => 'sourceforge',
Expand Down

0 comments on commit 5a33574

Please sign in to comment.