From 5906a7d9058513150f2835ad1fefdbeddd7d221e Mon Sep 17 00:00:00 2001 From: KKAYFISH Date: Thu, 26 Oct 2023 14:47:19 -0700 Subject: [PATCH] EMBCESSMOD-4682: Added additiona logging - to be reverted as well --- .../search/essfile-dashboard/essfile-dashboard.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/essfile-dashboard.component.ts b/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/essfile-dashboard.component.ts index 653bd6666..38788ed65 100644 --- a/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/essfile-dashboard.component.ts +++ b/responders/src/UI/embc-responder/src/app/feature-components/search/essfile-dashboard/essfile-dashboard.component.ts @@ -38,6 +38,7 @@ export class EssfileDashboardComponent implements OnInit { ) {} async ngOnInit(): Promise { + console.log('essfile-dashboard component onInit'); if ( this.optionInjectionService.instance.optionType === SelectedPathType.remoteExtensions || @@ -64,6 +65,7 @@ export class EssfileDashboardComponent implements OnInit { }); }); } else { + console.log('essfile-dashboard component onInit-getEssFile'); this.getEssFile(); } @@ -144,8 +146,10 @@ export class EssfileDashboardComponent implements OnInit { this.displayBanner = this.optionInjectionService.instance.getDashboardBanner(file?.status); this.isLoading = !this.isLoading; + console.log('essfile-dashboard component getEssFile = file loaded'); }) .catch((error) => { + console.log('essfile-dashboard component getEssFile - error'); this.isLoading = !this.isLoading; this.alertService.clearAlert(); this.alertService.setAlert('danger', globalConst.fileDashboardError);