Remove unneeded trace messages

This commit is contained in:
reusedname 2025-02-27 21:26:19 +05:00
parent 5cadac31ce
commit d07a9ffaaa
1 changed files with 0 additions and 2 deletions

View File

@ -90,7 +90,6 @@ public class MergedFfmpegHlsDownload extends AbstractHlsDownload {
}
protected void streamSegmentDataToFfmpeg() {
LOG.trace("Starting streaming segments to file {}", targetFile);
while (running && !Thread.currentThread().isInterrupted()) {
try {
try {
@ -121,7 +120,6 @@ public class MergedFfmpegHlsDownload extends AbstractHlsDownload {
LOG.error("Segment download failed for model {}", model, e);
}
}
LOG.trace("Finishing streaming segments to file {}", targetFile);
}
@Override