summaryrefslogtreecommitdiffstats
path: root/system/core/Common.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2013-08-07 14:54:47 +0200
committerAndrey Andreev <narf@devilix.net>2013-08-07 14:54:47 +0200
commit2f8d2d381ef4a2fd9ea8f67a36a731aae8b14064 (patch)
tree859b63e2d6a2389ddc1622731c7e7cd8715fe316 /system/core/Common.php
parentc49d181403f9d6a2cc8ad2d24d5c9d145b53c005 (diff)
Add a changelog entry for PR #2590 and further optimize log_message()
CI_Log::write_log() already checks the log threshold, so there's no point in doing it in log_message() as well.
Diffstat (limited to 'system/core/Common.php')
-rw-r--r--system/core/Common.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index 98a3fcb35..21e1df9c6 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -439,17 +439,7 @@ if ( ! function_exists('log_message'))
*/
function log_message($level, $message, $php_error = FALSE)
{
- static $_log, $_log_threshold;
-
- if ($_log_threshold === NULL)
- {
- $_log_threshold = config_item('log_threshold');
- }
-
- if ($_log_threshold === 0)
- {
- return;
- }
+ static $_log;
if ($_log === NULL)
{