From d673719b67c685457921fd3e9b8ea693b147c4a0 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Wed, 18 Mar 2020 19:25:51 -0400 Subject: [PATCH] remove some debug logging --- src/account/NewNetworkPage.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/account/NewNetworkPage.vue b/src/account/NewNetworkPage.vue index b4f2711..325e9e7 100644 --- a/src/account/NewNetworkPage.vue +++ b/src/account/NewNetworkPage.vue @@ -582,7 +582,6 @@ this.getNearestRegions({footprintId: this.accountPlan.footprint, messages: this.messages, errors: this.errors}); }, setAccountPaymentMethod (apm) { - console.log('setAccountPaymentMethod: setting apm='+JSON.stringify(apm)); this.accountPlan.paymentMethodObject = { uuid: apm.uuid, paymentMethodType: null, @@ -676,14 +675,12 @@ } this.accountPayMethods = payMethods; if (this.accountPlan.paymentMethodObject.uuid === null && payMethods.length > 0) { - console.log('watch.apm: setting paymethod='+JSON.stringify(payMethods[0])); this.setAccountPaymentMethod(payMethods[0]); } } }, paymentMethod (pm) { if (pm) { - console.log("watch.paymentMethod: pm="+JSON.stringify(pm)); this.selectedPaymentMethod = pm; if (this.accountPlan.paymentMethodObject.uuid === null) { this.accountPlan.paymentMethodObject.paymentMethodType = pm.paymentMethodType; @@ -698,7 +695,6 @@ } }, accountPaymentMethod (apm) { - console.log('watch.accountPaymentMethod: received: '+JSON.stringify(apm)); if (apm) { this.accountPlan.paymentMethodObject.uuid = apm.uuid; this.accountPlan.paymentMethodObject.paymentMethodType = null;