Reduce log level for getStreamResolution

This commit is contained in:
0xb00bface 2021-05-29 17:37:12 +02:00
parent 341846e94e
commit 600f1941a5
1 changed files with 1 additions and 1 deletions

View File

@ -727,7 +727,7 @@ public class ThumbCell extends StackPane {
try {
return model.getStreamResolution(false);
} catch (ExecutionException e) {
LOG.debug("Error loading stream resolution for model {}: {}", model, e.getLocalizedMessage());
LOG.trace("Error loading stream resolution for model {}: {}", model, e.getLocalizedMessage());
return new int[2];
}
}