Skip to content

Commit

Permalink
#984: improve log message for updateNotification
Browse files Browse the repository at this point in the history
  • Loading branch information
JoernBerkefeld committed Oct 9, 2023
1 parent bd755f4 commit 258c067
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/metadataTypes/ImportFile.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class ImportFile extends MetadataType {
const keysForDeploy = [];
if (Object.keys(metadataMap).length) {
Util.logger.info(
`Searching for ${this.definition.type} keys among downloaded items where notification email address should be updated:`
`Searching for ${this.definition.type}s among downloaded items where notification email address should be updated:`
);
for (const item of Object.values(metadataMap)) {
if (item['notificationEmailAddress'] === Util.OPTIONS.completionEmail) {
Expand All @@ -200,7 +200,7 @@ class ImportFile extends MetadataType {
}
}
Util.logger.info(
`Found ${keysForDeploy.length} ${this.definition.type} keys to update email notification address`
`Found ${keysForDeploy.length} ${this.definition.type}s to update email notification address`
);
}
return keysForDeploy;
Expand Down

0 comments on commit 258c067

Please sign in to comment.