forked from j62/ctbrec
Fix log message
This commit is contained in:
parent
ede6dd73d2
commit
c0bd89b228
|
@ -171,7 +171,7 @@ public class HlsDownload extends AbstractHlsDownload {
|
||||||
break;
|
break;
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
if (i == maxTries) {
|
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 {
|
} else {
|
||||||
LOG.warn("Error while downloading segment on try {}", i);
|
LOG.warn("Error while downloading segment on try {}", i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue