Fixed bug where laravel is generating error log from outside of application classes.
This commit is contained in:
@@ -60,7 +60,7 @@ class Log {
|
||||
|
||||
foreach($trace as $item)
|
||||
{
|
||||
if ($item['class'] == __CLASS__)
|
||||
if (isset($item['class']) AND $item['class'] == __CLASS__)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user