summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Passas <cpassas@gmail.com>2013-02-13 20:16:18 +0100
committerChris Passas <cpassas@gmail.com>2013-02-13 20:16:18 +0100
commit0bd6b28045c9b9a820e580b3f651f474b60348a3 (patch)
treebad9b41faf9dab741cfba811a1c99fd53fbd480b
parentaae91a45e27cb11e09b22bf9be04a7da9f6ff20b (diff)
Added support for changing the default log file extension from .php to whatever is preferred. example (.log)
This is a follow up to this pull request. https://github.com/EllisLab/CodeIgniter/pull/2243
-rw-r--r--application/config/config.php11
-rw-r--r--system/core/Log.php2
-rw-r--r--user_guide_src/source/changelog.rst1
3 files changed, 14 insertions, 0 deletions
diff --git a/application/config/config.php b/application/config/config.php
index 415474e06..6f597b1e2 100644
--- a/application/config/config.php
+++ b/application/config/config.php
@@ -226,6 +226,17 @@ $config['log_path'] = '';
/*
|--------------------------------------------------------------------------
+| Log File Extension
+|--------------------------------------------------------------------------
+|
+| Leave this BLANK unless you would like to set something other than the default
+| 'php'. For example you could change it to 'log'.
+|
+*/
+$config['log_file_extension'] = '';
+
+/*
+|--------------------------------------------------------------------------
| Date Format for Logs
|--------------------------------------------------------------------------
|
diff --git a/system/core/Log.php b/system/core/Log.php
index 3b0a9213d..7572d2ac6 100644
--- a/system/core/Log.php
+++ b/system/core/Log.php
@@ -104,6 +104,8 @@ class CI_Log {
$this->_log_path = ($config['log_path'] !== '') ? $config['log_path'] : APPPATH.'logs/';
+ $this->_log_ext = ($config['log_file_extension'] !== '') ? $config['log_file_extension'] : $this->_log_ext;
+
file_exists($this->_log_path) OR mkdir($this->_log_path, DIR_WRITE_MODE, TRUE);
if ( ! is_dir($this->_log_path) OR ! is_really_writable($this->_log_path))
diff --git a/user_guide_src/source/changelog.rst b/user_guide_src/source/changelog.rst
index 893c3db61..7f12ca8a1 100644
--- a/user_guide_src/source/changelog.rst
+++ b/user_guide_src/source/changelog.rst
@@ -55,6 +55,7 @@ Release Date: Not Released
- Updated *ip_address* database field lengths from 16 to 45 for supporting IPv6 address on :doc:`Trackback Library <libraries/trackback>` and :doc:`Captcha Helper <helpers/captcha_helper>`.
- Removed *cheatsheets* and *quick_reference* PDFs from the documentation.
- Added availability checks where usage of dangerous functions like ``eval()`` and ``exec()`` is required.
+ - Added support for changing the file extension of CodeIgniter log files using $config['log_file_extension'].
- Helpers