Fix typo in log message
This commit is contained in:
parent
b847630534
commit
6bb706c6fd
|
@ -173,10 +173,10 @@ public abstract class AbstractHlsDownload extends AbstractDownload {
|
|||
checkIfModelIsStillOnline("Playlist access forbidden (403). Model {} probably went private or offline. Model state: {}");
|
||||
}
|
||||
if (consecutivePlaylistErrors >= 3) {
|
||||
LOG.info("Playlist couldn't not be downloaded for model {} {} times. Stopping recording", model, consecutivePlaylistErrors, e);
|
||||
LOG.info("Playlist could not be downloaded for model {} {} times. Stopping recording", model, consecutivePlaylistErrors, e);
|
||||
stop();
|
||||
} else {
|
||||
LOG.info("Playlist couldn't not be downloaded for model {} {} times: {}", model, consecutivePlaylistErrors, e.getLocalizedMessage());
|
||||
LOG.info("Playlist could not be downloaded for model {} {} times: {}", model, consecutivePlaylistErrors, e.getLocalizedMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue