Change log level

This commit is contained in:
0xboobface 2018-11-04 13:40:59 +01:00
parent 9da580c6e8
commit e9b699fdda
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ public abstract class AbstractHlsDownload implements Download {
for (Iterator<StreamSource> iterator = streamSources.iterator(); iterator.hasNext();) {
StreamSource streamSource = iterator.next();
if(streamSource.height > 0 && maxRes < streamSource.height) {
LOG.debug("Res too high {} > {}", streamSource.height, maxRes);
LOG.trace("Res too high {} > {}", streamSource.height, maxRes);
iterator.remove();
}
}