forked from j62/ctbrec
Change log level
This commit is contained in:
parent
9da580c6e8
commit
e9b699fdda
|
@ -93,7 +93,7 @@ public abstract class AbstractHlsDownload implements Download {
|
||||||
for (Iterator<StreamSource> iterator = streamSources.iterator(); iterator.hasNext();) {
|
for (Iterator<StreamSource> iterator = streamSources.iterator(); iterator.hasNext();) {
|
||||||
StreamSource streamSource = iterator.next();
|
StreamSource streamSource = iterator.next();
|
||||||
if(streamSource.height > 0 && maxRes < streamSource.height) {
|
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();
|
iterator.remove();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue