diff --git a/src/main/java/ctbrec/recorder/download/AbstractHlsDownload.java b/src/main/java/ctbrec/recorder/download/AbstractHlsDownload.java index 97bc1bdd..84a3744d 100644 --- a/src/main/java/ctbrec/recorder/download/AbstractHlsDownload.java +++ b/src/main/java/ctbrec/recorder/download/AbstractHlsDownload.java @@ -93,7 +93,7 @@ public abstract class AbstractHlsDownload implements Download { for (Iterator 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(); } }