diff options
author | Heesung Ahn <ahn.heesung@gmail.com> | 2015-03-05 16:49:11 +0100 |
---|---|---|
committer | Heesung Ahn <ahn.heesung@gmail.com> | 2015-03-05 16:49:11 +0100 |
commit | 7b0e60b085e35363bd9ab9150f62227f74711f2a (patch) | |
tree | e30dd7f4171c83e19a32d197a078f6a1daf0d658 /system/core/Log.php | |
parent | 4b25348e06a7587c64b97811208352c5c9478ab8 (diff) | |
parent | 137aa20e0b0fd71ff8f672c57c07c4972c91c6a4 (diff) |
Merge origin/develop into CI_Security_test
Diffstat (limited to 'system/core/Log.php')
-rw-r--r-- | system/core/Log.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/system/core/Log.php b/system/core/Log.php index 833316273..e8cb401f5 100644 --- a/system/core/Log.php +++ b/system/core/Log.php @@ -70,13 +70,6 @@ class CI_Log { protected $_threshold = 1; /** - * Highest level of logging - * - * @var int - */ - protected $_threshold_max = 0; - - /** * Array of threshold levels to log * * @var array @@ -139,7 +132,7 @@ class CI_Log { } elseif (is_array($config['log_threshold'])) { - $this->_threshold = $this->_threshold_max; + $this->_threshold = 0; $this->_threshold_array = array_flip($config['log_threshold']); } |