Commit c6e814a6 authored by Taylor Otwell's avatar Taylor Otwell

return true on ignored errors.

parent b8f17bb8
...@@ -56,6 +56,8 @@ class Error { ...@@ -56,6 +56,8 @@ class Error {
if (in_array($code, Config::get('error.ignore'))) if (in_array($code, Config::get('error.ignore')))
{ {
return static::log($exception); return static::log($exception);
return true;
} }
static::exception($exception); static::exception($exception);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment