From 6982bceb57a51fcc430397b2374696c4d9e00866 Mon Sep 17 00:00:00 2001 From: 0xboobface <0xboobface@gmail.com> Date: Fri, 9 Nov 2018 18:20:28 +0100 Subject: [PATCH] Reduce verbosity of logging --- src/main/java/ctbrec/ui/ThumbCell.java | 2 ++ 1 file changed, 2 insertions(+) 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); }