diff --git a/src/main/java/ctbrec/ui/ThumbCell.java b/src/main/java/ctbrec/ui/ThumbCell.java index 87ca2ce8..1865844b 100644 --- a/src/main/java/ctbrec/ui/ThumbCell.java +++ b/src/main/java/ctbrec/ui/ThumbCell.java @@ -226,6 +226,8 @@ public class ThumbCell extends StackPane { } catch(ExecutionException e) { if(e.getCause() instanceof EOFException) { LOG.warn("Couldn't update resolution tag for model {}. Playlist empty", model.getName()); + } else if(e.getCause() instanceof ParseException) { + LOG.warn("Couldn't update resolution tag for model {} - {}", model.getName(), e.getMessage()); } else { LOG.warn("Couldn't update resolution tag for model {}", model.getName(), e); }