fix: logExceptionByCustomHandler에서 echo 안하는 옵션 추가

This commit is contained in:
2022-05-09 22:31:14 +09:00
parent 717017fad5
commit cfcdc3149f
2 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -100,7 +100,7 @@ class APIHelper
} catch (\Exception $e) {
Json::dieWithReason($e->getMessage());
} catch (\Throwable $e) {
logExceptionByCustomHandler($e);
logExceptionByCustomHandler($e, false);
Json::dieWithReason($e->getMessage());
} catch (mixed $e) {
Json::dieWithReason(strval($e));