correct & simplify the DB logging

This commit is contained in:
2025-05-28 19:37:01 -06:00
parent 8bcdf86891
commit b2cccfb7ef
4 changed files with 23 additions and 50 deletions

View File

@@ -143,6 +143,14 @@ class AbsurdSqlDatabaseService implements DatabaseService {
}
operation.resolve(result);
} catch (error) {
console.log(
"Error while processing SQL queue:",
error,
" ... for sql:",
operation.sql,
" ... with params:",
operation.params,
);
operation.reject(error);
}
}