revert: Revert "chore: log error count in final result log"
This reverts commit 2421913587.
This commit is contained in:
parent
9767142287
commit
7cdc3e1acc
1 changed files with 1 additions and 2 deletions
|
|
@ -86,8 +86,7 @@ export class StreamResolver {
|
|||
return a.label.localeCompare(b.label);
|
||||
});
|
||||
|
||||
const errorCount = urlResults.reduce((count, urlResult) => urlResult.error ? count + 1 : count, 0);
|
||||
this.logger.info(`Got ${urlResults.length} url results, including ${errorCount} errors`, ctx);
|
||||
this.logger.info(`Return ${urlResults.length} streams`, ctx);
|
||||
|
||||
streams.push(
|
||||
...urlResults.filter(urlResult => !urlResult.error || showErrors(ctx.config))
|
||||
|
|
|
|||
Loading…
Reference in a new issue