Reduce verbosity of logging
This commit is contained in:
parent
dc540c795a
commit
6982bceb57
|
@ -226,6 +226,8 @@ public class ThumbCell extends StackPane {
|
||||||
} catch(ExecutionException e) {
|
} catch(ExecutionException e) {
|
||||||
if(e.getCause() instanceof EOFException) {
|
if(e.getCause() instanceof EOFException) {
|
||||||
LOG.warn("Couldn't update resolution tag for model {}. Playlist empty", model.getName());
|
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 {
|
} else {
|
||||||
LOG.warn("Couldn't update resolution tag for model {}", model.getName(), e);
|
LOG.warn("Couldn't update resolution tag for model {}", model.getName(), e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue