From 5587f482f39dc6aa518ecb2691a4dae28acf03a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 8 Sep 2023 23:38:36 +0200 Subject: [PATCH] refactor: silence sonar MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/utils/Configuration.ts | 12 ++++++------ src/utils/ErrorUtils.ts | 5 +++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/utils/Configuration.ts b/src/utils/Configuration.ts index bf691fa8..8dc1f70a 100644 --- a/src/utils/Configuration.ts +++ b/src/utils/Configuration.ts @@ -568,21 +568,21 @@ export class Configuration { let logMsg: string; switch (error.code) { case 'ENOENT': - logMsg = `${fileType} file ${file} not found:`; + logMsg = `${fileType} file ${file} not found: `; break; case 'EEXIST': - logMsg = `${fileType} file ${file} already exists:`; + logMsg = `${fileType} file ${file} already exists: `; break; case 'EACCES': - logMsg = `${fileType} file ${file} access denied:`; + logMsg = `${fileType} file ${file} access denied: `; break; case 'EPERM': - logMsg = `${fileType} file ${file} permission denied:`; + logMsg = `${fileType} file ${file} permission denied: `; break; default: - logMsg = `${fileType} file ${file} error:`; + logMsg = `${fileType} file ${file} error: `; } - console.error(`${chalk.green(prefix)}${chalk.red(`${logMsg} `)}`, error); + console.error(`${chalk.green(prefix)}${chalk.red(logMsg)}`, error); throw error; } diff --git a/src/utils/ErrorUtils.ts b/src/utils/ErrorUtils.ts index fea221e4..87234879 100644 --- a/src/utils/ErrorUtils.ts +++ b/src/utils/ErrorUtils.ts @@ -56,10 +56,11 @@ export const handleFileException = ( logMsg = `${fileType} file ${file} error:`; } if (params?.consoleOut === true) { + logMsg = `${logMsg} `; if (params?.throwError) { - console.error(`${chalk.green(prefix)}${chalk.red(`${logMsg} `)}`, error); + console.error(`${chalk.green(prefix)}${chalk.red(logMsg)}`, error); } else { - console.warn(`${chalk.green(prefix)}${chalk.yellow(`${logMsg} `)}`, error); + console.warn(`${chalk.green(prefix)}${chalk.yellow(logMsg)}`, error); } } else if (params?.consoleOut === false) { if (params?.throwError) { -- 2.34.1