summaryrefslogtreecommitdiffstats
path: root/system/core/Log.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/core/Log.php')
-rw-r--r--system/core/Log.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/system/core/Log.php b/system/core/Log.php
index 9c33f3e98..8ce1b83a2 100644
--- a/system/core/Log.php
+++ b/system/core/Log.php
@@ -54,6 +54,13 @@ class CI_Log {
* @var string
*/
protected $_log_path;
+
+ /**
+ * Filename of log
+ *
+ * @var string
+ */
+ protected $_log_file;
/**
* File permissions
@@ -127,6 +134,9 @@ class CI_Log {
$this->_log_path = ($config['log_path'] !== '')
? rtrim($config['log_path'], '/\\').DIRECTORY_SEPARATOR : APPPATH.'logs'.DIRECTORY_SEPARATOR;
+ $this->_log_file = (isset($config['log_file']) && $config['log_file'] !== '')
+ ? $config['log_file'] : 'log-'.date('Y-m-d');
+
$this->_file_ext = (isset($config['log_file_extension']) && $config['log_file_extension'] !== '')
? ltrim($config['log_file_extension'], '.') : 'php';
@@ -184,7 +194,7 @@ class CI_Log {
return FALSE;
}
- $filepath = $this->_log_path.'log-'.date('Y-m-d').'.'.$this->_file_ext;
+ $filepath = $this->_log_path.$this->_log_file.'.'.$this->_file_ext;
$message = '';
if ( ! file_exists($filepath))