Browse Source

add default logging config in Config/bootstrap.php

Rachman Chavik 14 years ago
parent
commit
5c4f741529
2 changed files with 28 additions and 0 deletions
  1. 14 0
      app/Config/bootstrap.php
  2. 14 0
      lib/Cake/Console/Templates/skel/Config/bootstrap.php

+ 14 - 0
app/Config/bootstrap.php

@@ -151,3 +151,17 @@ Configure::write('Dispatcher.filters', array(
 	'AssetDispatcher',
 	'CacheDispatcher'
 ));
+
+/**
+ * Configures default file logging options
+ */
+CakeLog::config('debug', array(
+	'engine' => 'FileLog',
+	'types' => array('notice', 'info', 'debug'),
+	'file' => 'debug',
+));
+CakeLog::config('error', array(
+	'engine' => 'FileLog',
+	'types' => array('error', 'warning'),
+	'file' => 'error',
+));

+ 14 - 0
lib/Cake/Console/Templates/skel/Config/bootstrap.php

@@ -91,3 +91,17 @@ Configure::write('Dispatcher.filters', array(
 	'AssetDispatcher',
 	'CacheDispatcher'
 ));
+
+/**
+ * Configures default file logging options
+ */
+CakeLog::config('debug', array(
+	'engine' => 'FileLog',
+	'scopes' => array('notice', 'info', 'debug'),
+	'file' => 'debug',
+));
+CakeLog::config('error', array(
+	'engine' => 'FileLog',
+	'scopes' => array('error', 'warning'),
+	'file' => 'error',
+));