Ha... I didn't even no that parameter existed for logging. I've posted an update to the develop branch so that the redirect_404() function call will automatically log the URI path before redirecting (this function will first check for a redirect before showing a 404). Alternatively, you could could overwrite the show_404 function by adding to you my_helper.php file: function show_404($page = '', $log_error = TRUE)
{
if (empty($page)) $page = uri_string();
$_error =& load_class('Exceptions', 'core');
$_error->show_404($page, $log_error);
exit;
}
Comments
function show_404($page = '', $log_error = TRUE) { if (empty($page)) $page = uri_string(); $_error =& load_class('Exceptions', 'core'); $_error->show_404($page, $log_error); exit; }
I didn't see a commit in the development branch with the change.