From 313729146e4d8a0f82cef7fbb7948f8f10c36c7a Mon Sep 17 00:00:00 2001 From: Drew Ansbacher Date: Tue, 31 Aug 2021 11:37:52 -0600 Subject: [PATCH] no more logs --- .../app/pages/apps-routes/app-actions/app-actions.page.ts | 1 - .../apps-routes/app-properties/app-properties.page.ts | 1 - ui/src/app/services/config.service.ts | 8 -------- 3 files changed, 10 deletions(-) diff --git a/ui/src/app/pages/apps-routes/app-actions/app-actions.page.ts b/ui/src/app/pages/apps-routes/app-actions/app-actions.page.ts index 9ba8ae6fd..e05637b12 100644 --- a/ui/src/app/pages/apps-routes/app-actions/app-actions.page.ts +++ b/ui/src/app/pages/apps-routes/app-actions/app-actions.page.ts @@ -143,7 +143,6 @@ export class AppActionsPage { } private async executeAction (pkgId: string, actionId: string, input?: object): Promise { - console.log('executing action') const loader = await this.loadingCtrl.create({ spinner: 'lines', message: 'Executing action...', diff --git a/ui/src/app/pages/apps-routes/app-properties/app-properties.page.ts b/ui/src/app/pages/apps-routes/app-properties/app-properties.page.ts index c295d4b43..70de05dcf 100644 --- a/ui/src/app/pages/apps-routes/app-properties/app-properties.page.ts +++ b/ui/src/app/pages/apps-routes/app-properties/app-properties.page.ts @@ -122,7 +122,6 @@ export class AppPropertiesPage { this.properties = await this.embassyApi.getPackageProperties({ id: this.pkgId }) this.node = JsonPointer.get(this.properties, this.pointer || '') } catch (e) { - console.log('catching') this.errToast.present(e) } finally { this.loading = false diff --git a/ui/src/app/services/config.service.ts b/ui/src/app/services/config.service.ts index 149e2e61a..276bbb46e 100644 --- a/ui/src/app/services/config.service.ts +++ b/ui/src/app/services/config.service.ts @@ -50,14 +50,6 @@ export class ConfigService { } isLaunchable (state: PackageState, status: PackageMainStatus, interfaces: { [id: string]: InterfaceDef }): boolean { - console.log('is launchable', this.isLaunchable) - console.log('state', state) - console.log('status', status) - console.log('ret val', status === PackageMainStatus.Running && - ( - (hasTorUi(interfaces) && this.isTor()) || - (hasLanUi(interfaces) && !this.isTor()) - )) if (this.isConsulate || state !== PackageState.Installed) { return false }