summaryrefslogtreecommitdiffstats
path: root/system/core/Log.php
diff options
context:
space:
mode:
authorjonsmith1982 <you@example.com>2019-01-28 13:17:39 +0100
committerjonsmith1982 <jonsmith1982@googlemail.com>2019-01-28 14:12:12 +0100
commitd14d85559266ab16b2261a10ab024276b3f3c226 (patch)
treed3e67fca4a01ea4c3dd341f0e370c384197f5420 /system/core/Log.php
parent807f43b65d6b3fc35e8fed6fce1add36971f9f51 (diff)
fixes #5648
Signed-off-by: jonsmith1982 <jonsmith1982@googlemail.com>
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 d651e8abe..01407cfcf 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))