From c485c8a20967cd5c1af1d97053d404cb80a875d2 Mon Sep 17 00:00:00 2001 From: Oliver Foster Date: Tue, 12 Nov 2024 16:16:40 +0000 Subject: [PATCH] Remove console log --- grunt/helpers/Translate.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/grunt/helpers/Translate.js b/grunt/helpers/Translate.js index aa4cd1a2b..bb71b6871 100644 --- a/grunt/helpers/Translate.js +++ b/grunt/helpers/Translate.js @@ -210,7 +210,6 @@ ${entries.map(item => { const filePath = path.join(outputFolder, 'source.xlf'); this.log(`Exporting xliff to ${filePath}`); fs.writeFileSync(filePath, `${output}`); - return this; } @@ -294,7 +293,6 @@ ${entries.map(item => { if (format === 'xliff') format = 'xlf'; // discover import files - console.log(`${inputFolder}/*.${format}`); const langFiles = globs.sync([`${inputFolder}/*.${format}`]); if (langFiles.length === 0) { throw new Error(`No languagefiles found to process in folder ${inputFolder}`);