From d14d85559266ab16b2261a10ab024276b3f3c226 Mon Sep 17 00:00:00 2001 From: jonsmith1982 Date: Mon, 28 Jan 2019 12:17:39 +0000 Subject: fixes #5648 Signed-off-by: jonsmith1982 --- system/core/Log.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'system') 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)) -- cgit v1.2.3-24-g4f1b