Add console.log to Checkout component for debugging

This commit is contained in:
Rene V. Vergara A. 2022-08-03 09:33:21 -05:00
parent ee09c1f710
commit b5885517e9
1 changed files with 2 additions and 1 deletions

View File

@ -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");
}