remove debugging console statements

This commit is contained in:
2025-05-26 20:43:06 -06:00
parent 11f2527b04
commit 3c0bdeaed3

View File

@@ -1237,7 +1237,6 @@ export default class AccountViewView extends Vue {
await db.open(); await db.open();
settings = await retrieveSettingsForActiveAccount(); settings = await retrieveSettingsForActiveAccount();
} }
console.log("activeDid", settings.activeDid, "settings", settings);
this.activeDid = settings.activeDid || ""; this.activeDid = settings.activeDid || "";
this.apiServer = settings.apiServer || ""; this.apiServer = settings.apiServer || "";
@@ -1353,7 +1352,6 @@ export default class AccountViewView extends Vue {
async processIdentity() { async processIdentity() {
const platformService = PlatformServiceFactory.getInstance(); const platformService = PlatformServiceFactory.getInstance();
const dbAccount = await platformService.dbQuery("SELECT * FROM accounts WHERE did = ?", [this.activeDid]); const dbAccount = await platformService.dbQuery("SELECT * FROM accounts WHERE did = ?", [this.activeDid]);
console.log("activeDid", this.activeDid, "dbAccount", dbAccount);
let account: Account | undefined = undefined; let account: Account | undefined = undefined;
if (dbAccount) { if (dbAccount) {
account = databaseUtil.mapColumnsToValues(dbAccount.columns, dbAccount.values)[0] as Account; account = databaseUtil.mapColumnsToValues(dbAccount.columns, dbAccount.values)[0] as Account;