From b5885517e9a0817786830df3c202074671e7b444 Mon Sep 17 00:00:00 2001 From: Rene Vergara A Date: Wed, 3 Aug 2022 09:33:21 -0500 Subject: [PATCH] Add console.log to Checkout component for debugging --- src/app/checkout/checkout.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/checkout/checkout.component.ts b/src/app/checkout/checkout.component.ts index 6a24355..5298fc0 100644 --- a/src/app/checkout/checkout.component.ts +++ b/src/app/checkout/checkout.component.ts @@ -24,6 +24,7 @@ export class CheckoutComponent implements OnInit{ private sanitizer: DomSanitizer, @Inject(MAT_DIALOG_DATA) public data: { totalZec: number, addr: string, orderId: string} ) { + console.log("Entra a Constructor") this.address = data.addr; this.total = data.totalZec; this.orderId = data.orderId; @@ -42,7 +43,7 @@ export class CheckoutComponent implements OnInit{ logoHeight: 60, correctLevel: QRCode.CorrectLevel.H }); -// console.log(">>> " + qrcode); + console.log("mgOnInit - pasa"); }