summaryrefslogtreecommitdiff
path: root/system/config/log.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2010-01-06 17:05:00 -0800
committerBharat Mediratta <bharat@menalto.com>2010-01-06 17:05:00 -0800
commit10c05c855a1634a60048a52e8d90bc51f187ede7 (patch)
treeb65a9d3b2f2213503e3f143b18af6ebd831bc554 /system/config/log.php
parent058a84ed76df96aeb6ec082d16fe0d8f317faac2 (diff)
parentded8fc593cccaf66236fb271a6d3f962d8c4b337 (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'system/config/log.php')
-rw-r--r--system/config/log.php24
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