Be less verbose on playlist parsing errors

This commit is contained in:
0xboobface 2018-11-10 14:31:40 +01:00
parent 45a7e4ba5f
commit 2658536ee6
1 changed files with 3 additions and 1 deletions

View File

@ -179,7 +179,9 @@ public class MyFreeCamsModel extends AbstractModel {
Collections.sort(streamSources);
StreamSource best = streamSources.get(streamSources.size()-1);
resolution = new int[] {best.width, best.height};
} catch (ExecutionException | IOException | ParseException | PlaylistException e) {
} catch (ParseException | PlaylistException e) {
LOG.warn("Couldn't determine stream resolution - {}", e.getMessage());
} catch (ExecutionException | IOException e) {
LOG.error("Couldn't determine stream resolution", e);
}
});