Fixed mistake in \LogLib\Classes > Console > outException()
where the function attempts to print out a previous exception by calling getPrevious()
as an array instead of a function call.
This commit is contained in:
parent
881145c1cb
commit
0d92d2a838
2 changed files with 6 additions and 1 deletions
|
@ -211,7 +211,7 @@
|
|||
if($exception->getPrevious() !== null)
|
||||
{
|
||||
print('Previous Exception:' . PHP_EOL);
|
||||
self::outException($exception['previous']);
|
||||
self::outException($exception->getPrevious());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue