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:
Netkas 2023-07-06 18:42:25 -04:00
parent 881145c1cb
commit 0d92d2a838
No known key found for this signature in database
GPG key ID: 5DAF58535614062B
2 changed files with 6 additions and 1 deletions

View file

@ -211,7 +211,7 @@
if($exception->getPrevious() !== null)
{
print('Previous Exception:' . PHP_EOL);
self::outException($exception['previous']);
self::outException($exception->getPrevious());
}
}
}