From: Jérôme Benoit Date: Fri, 8 Sep 2023 21:38:36 +0000 (+0200) Subject: refactor: silence sonar X-Git-Tag: v1.2.21~5 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=5587f482f39dc6aa518ecb2691a4dae28acf03a4;p=e-mobility-charging-stations-simulator.git refactor: silence sonar Signed-off-by: Jérôme Benoit --- 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) {