From 628f7ef1728a49459f29b7e8ed14a7a970614958 Mon Sep 17 00:00:00 2001 From: Nicola Lanzilotto Date: Tue, 23 Apr 2024 10:22:28 +0200 Subject: [PATCH] Remove log --- src/app/project-edit-add/project-edit-add.component.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/project-edit-add/project-edit-add.component.ts b/src/app/project-edit-add/project-edit-add.component.ts index 65434b43c5b1..ced5200df8a4 100755 --- a/src/app/project-edit-add/project-edit-add.component.ts +++ b/src/app/project-edit-add/project-edit-add.component.ts @@ -1998,13 +1998,13 @@ export class ProjectEditAddComponent implements OnInit, OnDestroy { // console.log('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER error _body', error._body); const error_body = error - console.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER error_body ', error_body); - console.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER error_body > msg ', error_body.msg); + this.logger.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER error_body ', error_body); + this.logger.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER error_body > msg ', error_body.msg); if (error_body && error_body.msg) { this.credit_card_error_msg = error_body.msg.raw.message; - console.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER error_body > msg > raw ', error_body.msg.raw); - console.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER credit_card_error_msg ', this.credit_card_error_msg); + this.logger.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER error_body > msg > raw ', error_body.msg.raw); + this.logger.error('[PRJCT-EDIT-ADD] - UPDATED CUSTOMER credit_card_error_msg ', this.credit_card_error_msg); this.CARD_HAS_ERROR = true; this.SPINNER_IN_ADD_CARD_MODAL = false this.DISPLAY_ADD_CARD_COMPLETED = false