This commit is contained in:
2024-12-31 03:37:59 -07:00
parent 89b0929ce8
commit 0dd2da70c8
7 changed files with 43 additions and 42 deletions

View File

@@ -10,7 +10,7 @@ const __controller_func = async (req, res) => {
try {
} catch (error) {
res.sendStatus(500);
res.status(500).send({ message: "Internal Server Error" });
logger.error("__controller_func", { error });
return;
}