chore: clean up console logs

This commit is contained in:
Matthew Raymer
2025-07-26 06:13:47 +00:00
parent ac22e37628
commit c628c78565
11 changed files with 15 additions and 30 deletions

View File

@@ -693,7 +693,11 @@ export class WebPlatformService implements PlatformService {
const setClause = keys.map((key) => `${key} = ?`).join(", ");
const sql = `UPDATE settings SET ${setClause} WHERE accountDid = ?`;
const params = [...keys.map((key) => settings[key]), did];
console.log("[WebPlatformService] updateDidSpecificSettings", sql, JSON.stringify(params, null, 2));
console.log(
"[WebPlatformService] updateDidSpecificSettings",
sql,
JSON.stringify(params, null, 2),
);
await this.dbExec(sql, params);
}