From 6d00c2a04dab46cba41c806b412f247cf849f8fc Mon Sep 17 00:00:00 2001 From: Eugenio Romano Date: Tue, 16 Jan 2024 17:07:27 +0100 Subject: [PATCH] [AAE-19604] fix unwanted notification error Unknown type for mapping is enough as log error --- .../services/property-groups-translator.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts b/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts index 19e2eda19e2..2126dc7c74f 100644 --- a/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts +++ b/lib/content-services/src/lib/content-metadata/services/property-groups-translator.service.ts @@ -187,7 +187,7 @@ export class PropertyGroupTranslatorService { private checkECMTypeValidity(ecmPropertyType: string) { if (RECOGNISED_ECM_TYPES.indexOf(ecmPropertyType) === -1) { - this.notificationService.showError(`Unknown type for mapping: ${ecmPropertyType}`); + this.logService.error(`Unknown type for mapping: ${ecmPropertyType}`); } }