Index: http/classes/class_mb_exception.php =================================================================== --- http/classes/class_mb_exception.php (revision 1752) +++ http/classes/class_mb_exception.php (working copy) @@ -70,7 +70,7 @@ var $level = "notice"; function mb_notice($message) { - $this->mb_log($message, $this->level); + $this->mb_log("Notice: " . $message, $this->level); } } @@ -78,7 +78,7 @@ var $level = "warning"; function mb_warning($message) { - $this->mb_log($message, $this->level); + $this->mb_log("Warning: " . $message, $this->level); } } @@ -86,7 +86,7 @@ var $level = "error"; function mb_exception($message) { - $this->mb_log($message, $this->level); + $this->mb_log("ERROR: " . $message, $this->level); } } ?> \ No newline at end of file