From 258c0672fe7c5d6eca479cb8e6b35a5c7d6d36c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Berkefeld?= Date: Mon, 9 Oct 2023 18:19:33 +0200 Subject: [PATCH] #984: improve log message for updateNotification --- lib/metadataTypes/ImportFile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/metadataTypes/ImportFile.js b/lib/metadataTypes/ImportFile.js index 5b39736f7..af494d015 100644 --- a/lib/metadataTypes/ImportFile.js +++ b/lib/metadataTypes/ImportFile.js @@ -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) { @@ -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;