From 1009040c536626a6bbc6ff642c41373c03a900e0 Mon Sep 17 00:00:00 2001 From: Rizky Date: Sat, 27 Apr 2024 08:53:21 +0700 Subject: [PATCH] fix --- pkgs/api/_dbs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/api/_dbs.ts b/pkgs/api/_dbs.ts index ff72bf8..71d19a8 100644 --- a/pkgs/api/_dbs.ts +++ b/pkgs/api/_dbs.ts @@ -12,7 +12,7 @@ export const _ = { const result = await execQuery(body, g.db); res.send(result); } catch (e: any) { - console.log("_dbs error", e.message); + console.log("_dbs error", body, e.message); res.sendStatus(500); res.send(e.message); }