This commit is contained in:
Benjamin Toby
2025-04-23 14:29:17 +01:00
parent 18cbf9b2f4
commit 22f4372cbf
3 changed files with 20 additions and 5 deletions
@@ -221,9 +221,9 @@ export default async function addDbEntry({
if (debug) {
debugLog({
log: DB_CONN,
log: DB_CONN?.getConfig(),
addTime: true,
label: "DB_CONN",
label: "DB_CONN Config",
});
debugLog({
@@ -241,6 +241,14 @@ export default async function addDbEntry({
const newInsert = await connDbHandler(DB_CONN, query, queryValuesArray);
if (debug) {
debugLog({
log: newInsert,
addTime: true,
label: "newInsert",
});
}
/**
* Return statement
*/