Fix log message

This commit is contained in:
0xboobface 2018-11-28 20:35:23 +01:00
parent ede6dd73d2
commit c0bd89b228
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ public class HlsDownload extends AbstractHlsDownload {
break;
} catch(Exception e) {
if (i == maxTries) {
LOG.warn("Error while downloading segment. Segment finally {} failed", file.toFile().getName());
LOG.warn("Error while downloading segment. Segment {} finally failed", file.toFile().getName());
} else {
LOG.warn("Error while downloading segment on try {}", i);
}