return true on ignored errors.

This commit is contained in:
Taylor Otwell
2012-01-24 13:03:12 -06:00
parent b8f17bb82d
commit c6e814a6cc

View File

@@ -56,6 +56,8 @@ class Error {
if (in_array($code, Config::get('error.ignore')))
{
return static::log($exception);
return true;
}
static::exception($exception);