log erros that were already caught
All checks were successful
soko-web/pipeline/pr-master This commit looks good

This commit is contained in:
Bence Pőcze 2023-09-26 23:04:24 +02:00
parent ebe1fa2aa6
commit 2d48f20aed
Signed by: bence
GPG Key ID: DC5BD6E95A333E6D

View File

@ -94,6 +94,7 @@ class HttpResponse
$response = call_user_func([$controller, $handler[1]]);
} catch (Exception $exception) {
$this->dbConnection->rollback();
error_log($exception);
$this->render500($exception);
return;
}