Add parser input to log message, if the HLS playlist cannot be parsed
This commit is contained in:
parent
69c518d6d6
commit
9c7f3c3fb4
|
@ -109,7 +109,7 @@ public class HlsDownload extends AbstractHlsDownload {
|
||||||
throw new IOException("Couldn't determine segments uri");
|
throw new IOException("Couldn't determine segments uri");
|
||||||
}
|
}
|
||||||
} catch(ParseException e) {
|
} catch(ParseException e) {
|
||||||
throw new IOException("Couldn't parse stream information", e);
|
throw new IOException("Couldn't parse HLS playlist:\n" + e.getInput(), e);
|
||||||
} catch(PlaylistException e) {
|
} catch(PlaylistException e) {
|
||||||
throw new IOException("Couldn't parse HLS playlist", e);
|
throw new IOException("Couldn't parse HLS playlist", e);
|
||||||
} catch(EOFException e) {
|
} catch(EOFException e) {
|
||||||
|
|
Loading…
Reference in New Issue