Change log level to trace in getMasterPlaylist

This commit is contained in:
0xboobface 2018-11-10 14:34:05 +01:00
parent f2cd4d3609
commit c8af7a409a
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ public class MyFreeCamsModel extends AbstractModel {
if(hlsUrl == null) {
throw new IllegalStateException("Stream url unknown");
}
LOG.debug("Loading master playlist {}", hlsUrl);
LOG.trace("Loading master playlist {}", hlsUrl);
Request req = new Request.Builder().url(hlsUrl).build();
Response response = site.getHttpClient().execute(req);
try {