Browse Source

remove debugging console statements

pull/137/head
Trent Larson 2 weeks ago
parent
commit
3c0bdeaed3
  1. 2
      src/views/AccountViewView.vue

2
src/views/AccountViewView.vue

@ -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;

Loading…
Cancel
Save