very strange thing ran into. couldn't find on internet curious whether bug or not.
if application runs in exception whoops error page stack trace not being displayed.
however, if comment out line 47 of illuminate\foundation\exceptions\handler:
$this->log->error((string) $e);
it appear?!
how possible?
this due exception taking place before error handler loaded. example, can happen when have issue use
statement in controller or within middleware.
it's quite rare, because standard php errors suppressed laravel can make debugging things little tricky. can either enable them, or check error logs of server when happen (the http response in scenario 500 clue).
Comments
Post a Comment