Skip to content

Commit

Permalink
[AAE-19604] fix unwanted notification error
Browse files Browse the repository at this point in the history
Unknown type for mapping is enough as log error
  • Loading branch information
eromano authored Jan 16, 2024
1 parent 2922f8f commit 6d00c2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
}
}

Expand Down

0 comments on commit 6d00c2a

Please sign in to comment.