Browse Source

Merge pull request #8436 from yiisoft/exception-logging

log the whole exception object to allow log targets to work with it
tags/2.0.6
Qiang Xue 9 years ago
parent
commit
d253e0c26f
  1. 1
      framework/CHANGELOG.md
  2. 2
      framework/base/ErrorHandler.php

1
framework/CHANGELOG.md

@ -10,6 +10,7 @@ Yii Framework 2 Change Log
- Enh #8070: `yii\console\controllers\MessageController` now sorts created messages, even if there is no new one, while saving to PHP file (klimov-paul)
- Enh #8286: `yii\console\controllers\MessageController` improved allowing extraction of nested translator calls (klimov-paul)
- Enh #8415: `yii\helpers\Html` allows correct rendering of conditional comments containing `!IE` (salaros, klimov-paul)
- Chg #6354: `ErrorHandler::logException()` will now log the whole exception object instead of only its string representation (cebe)
2.0.4 May 10, 2015

2
framework/base/ErrorHandler.php

@ -215,7 +215,7 @@ abstract class ErrorHandler extends Component
} elseif ($exception instanceof \ErrorException) {
$category .= ':' . $exception->getSeverity();
}
Yii::error((string) $exception, $category);
Yii::error($exception, $category);
}
/**

Loading…
Cancel
Save