summaryrefslogtreecommitdiffstats
path: root/system/core/Log.php
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2013-09-13 13:05:13 +0200
committerAndrey Andreev <narf@devilix.net>2013-09-13 13:05:13 +0200
commit838c9a96f645aac24daa31285efa1051535c4219 (patch)
tree15ad3da48e09aee1bfc29d18dd771126a29dd2f6 /system/core/Log.php
parent9b34448a295cac42273439e7cadb284bd3fe1a4d (diff)
Drop the unused parameter from log_message() / CI_Log::write_log()
Diffstat (limited to 'system/core/Log.php')
-rw-r--r--system/core/Log.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Log.php b/system/core/Log.php
index e4d72b544..20bc55986 100644
--- a/system/core/Log.php
+++ b/system/core/Log.php
@@ -143,7 +143,7 @@ class CI_Log {
* @param bool whether the error is a native PHP error
* @return bool
*/
- public function write_log($level, $msg, $php_error = FALSE)
+ public function write_log($level, $msg)
{
if ($this->_enabled === FALSE)
{