diff --git a/dist/index.js b/dist/index.js index 1ae69860..d38e5f10 100644 --- a/dist/index.js +++ b/dist/index.js @@ -1437,9 +1437,6 @@ const configuration_1 = __nccwpck_require__(5527); * @param analysis the output of the TICS analysis run. */ function cliSummary(analysis) { - if (analysis.errorList.length > 0 || (configuration_1.githubConfig.debugger && analysis.warningList.length > 0)) { - logger_1.logger.info(''); //empty line for better readability - } analysis.errorList.forEach(error => logger_1.logger.error(error)); if (configuration_1.githubConfig.debugger) { analysis.warningList.forEach(warning => logger_1.logger.warning(warning)); diff --git a/src/tics/api_helper.ts b/src/tics/api_helper.ts index 8ba6c19e..8cfe4806 100644 --- a/src/tics/api_helper.ts +++ b/src/tics/api_helper.ts @@ -7,9 +7,6 @@ import { Analysis } from '../helper/interfaces'; * @param analysis the output of the TICS analysis run. */ export function cliSummary(analysis: Analysis): void { - if (analysis.errorList.length > 0 || (githubConfig.debugger && analysis.warningList.length > 0)) { - logger.info(''); //empty line for better readability - } analysis.errorList.forEach(error => logger.error(error)); if (githubConfig.debugger) { analysis.warningList.forEach(warning => logger.warning(warning));