diff --git a/common/src/main/java/ctbrec/recorder/download/hls/AbstractHlsDownload.java b/common/src/main/java/ctbrec/recorder/download/hls/AbstractHlsDownload.java index e98eab1e..d4670f34 100644 --- a/common/src/main/java/ctbrec/recorder/download/hls/AbstractHlsDownload.java +++ b/common/src/main/java/ctbrec/recorder/download/hls/AbstractHlsDownload.java @@ -246,11 +246,11 @@ public abstract class AbstractHlsDownload extends AbstractDownload { } protected String getSegmentPlaylistUrl(Model model) throws IOException, ExecutionException, ParseException, PlaylistException, JAXBException { - LOG.debug("{} stream idx: {}", model.getName(), model.getStreamUrlIndex()); + LOG.debug("{}:{} stream idx: {}", model.getSite().getName(), model.getName(), model.getStreamUrlIndex()); List streamSources = model.getStreamSources(); Collections.sort(streamSources); for (StreamSource streamSource : streamSources) { - LOG.debug("{} src {}", model.getName(), streamSource); + LOG.debug("{}:{} src {}", model.getSite().getName(), model.getName(), streamSource); } String url; if (model.getStreamUrlIndex() >= 0 && model.getStreamUrlIndex() < streamSources.size()) {