Integrate EPSDK-FW library for auth and users
[portal/ric-dashboard.git] / webapp-frontend / src / app / anr-xapp / anr-xapp.datasource.ts
index cbf353f..5d923c3 100644 (file)
@@ -50,9 +50,9 @@ export class ANRXappDataSource extends DataSource<ANRNeighborCellRelation> {
     this.loadingSubject.next(true);
     this.anrXappService.getNcrtInfo(ggnodeb, servingCellNrcgi, neighborCellNrpci)
       .pipe(
-        catchError( (err: HttpErrorResponse) => {
-          console.log('ANRXappDataSource failed: ' + err.message);
-          this.notificationService.error('Failed to get data.');
+        catchError( (her: HttpErrorResponse) => {
+          console.log('ANRXappDataSource failed: ' + her.message);
+          this.notificationService.error('Failed to get data: ' + her.message);
           return of([]);
         }),
         finalize(() => this.loadingSubject.next(false))