diff options
Diffstat (limited to 'system/config/log.php')
-rw-r--r-- | system/config/log.php | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/system/config/log.php b/system/config/log.php index 5be2c41e..3b437771 100644 --- a/system/config/log.php +++ b/system/config/log.php @@ -1,7 +1,16 @@ <?php defined('SYSPATH') OR die('No direct access allowed.'); +/** + * Log Config + * + * @package Kohana + * @author Kohana Team + * @copyright (c) 2007-2009 Kohana Team + * @license http://kohanaphp.com/license + */ - -// Different log levels +/** + * Different log levels + */ $config['log_levels'] = array ( 'error' => 1, @@ -10,10 +19,17 @@ $config['log_levels'] = array 'debug' => 4, ); -// See different log levels above +/** + * See different log levels above + */ $config['log_threshold'] = 1; +/** + * Log Date format + */ $config['date_format'] = 'Y-m-d H:i:s P'; -// We can define multiple logging backends at the same time. +/** + * We can define multiple logging backends at the same time. + */ $config['drivers'] = array('file');
\ No newline at end of file |