1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-02-24 06:52:34 +01:00

When handling exception log exception message rather generic message

This commit is contained in:
Patrick Forget 2014-04-10 13:29:11 -04:00
parent 03000a7fcd
commit 4a5a150d92

View File

@ -123,7 +123,7 @@ class ErrorHandler
{
$this->logger->log(
$this->uncaughtExceptionLevel === null ? LogLevel::ERROR : $this->uncaughtExceptionLevel,
'Uncaught exception',
$e->getMessage(),
array('exception' => $e)
);