Skip to content

1.4.1

Compare
Choose a tag to compare
@baibaratsky baibaratsky released this 12 Apr 14:25
· 27 commits to master since this release

Now you can just log an exception without exiting from program.
Example:

try {
    somethingWrong();
} catch (\Exception $exception) {
    Yii::$app->errorHandler->logException($exception);