auto(agent): Improved error logging for deal participants query

This commit is contained in:
OpenClaw 2026-03-06 21:33:19 +00:00
parent 068971c887
commit 4277019218
2 changed files with 3 additions and 2 deletions

View file

@ -18,6 +18,7 @@ const getDealParticipants = async (dealId) => {
return rows[0] || null;
} catch (error) {
console.error('Database error while fetching deal participants for dealId:', dealId, error);
throw new Error('Database error while fetching deal participants');
}
};

View file

@ -1,2 +1,2 @@
LAST_ROUTE=auth.js
UPDATED_AT=2026-03-06T21:32:06Z
LAST_ROUTE=contacts.js
UPDATED_AT=2026-03-06T21:33:06Z