1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-07-12 17:16:22 +02: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->logger->log(
$this->uncaughtExceptionLevel === null ? LogLevel::ERROR : $this->uncaughtExceptionLevel, $this->uncaughtExceptionLevel === null ? LogLevel::ERROR : $this->uncaughtExceptionLevel,
'Uncaught exception', $e->getMessage(),
array('exception' => $e) array('exception' => $e)
); );