diff options
author | vlakoff <vlakoff@gmail.com> | 2013-05-07 07:49:23 +0200 |
---|---|---|
committer | vlakoff <vlakoff@gmail.com> | 2013-05-07 07:51:59 +0200 |
commit | d0c30ab416b0f6bc7fdc9ea70f6fd5e07ac13884 (patch) | |
tree | 2e7a675a4123e031a0524547c7d833a8437256d0 /system/core/Common.php | |
parent | 206d951e3da15bf9c69b3b8860c8bd274fb82b6f (diff) |
Logging functions: level parameter is not optional
This parameter cannot be optional, as the following parameter is mandatory.
Also completed the corresponding documentation.
Diffstat (limited to 'system/core/Common.php')
-rw-r--r-- | system/core/Common.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index b4f0c388e..cad340f33 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -424,12 +424,12 @@ if ( ! function_exists('log_message')) * We use this as a simple mechanism to access the logging * class and send messages to be logged. * - * @param string - * @param string - * @param bool + * @param string the error level: 'error', 'debug' or 'info' + * @param string the error message + * @param bool whether the error is a native PHP error * @return void */ - function log_message($level = 'error', $message, $php_error = FALSE) + function log_message($level, $message, $php_error = FALSE) { static $_log, $_log_threshold; |