diff --git a/scripts/commands/channels/validate.js b/scripts/commands/channels/validate.js index 431e976c..23ebed10 100644 --- a/scripts/commands/channels/validate.js +++ b/scripts/commands/channels/validate.js @@ -52,7 +52,7 @@ async function main() { } if (errors.length) { - logger.info(chalk.underline(filepath)) + console.log(chalk.underline(filepath)) console.table(errors, ['type', 'lang', 'xmltv_id', 'site_id', 'name']) console.log() stats.files++ @@ -60,7 +60,7 @@ async function main() { } if (stats.errors > 0) { - logger.error(chalk.red(`${stats.errors} error(s) in ${stats.files} file(s)`)) + console.log(chalk.red(`${stats.errors} error(s) in ${stats.files} file(s)`)) process.exit(1) } }