From 349eb0b7fcdcedc8061979443dd73bfa032118d0 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Sun, 3 May 2020 16:27:37 +0200 Subject: vo_gpu: suppress PL_FATAL logs during probing These were still mapped to MP errors during probing, but they also get triggered when instance creation fails due to lack of support for e.g. wayland. Since waylandvk is probed above x11vk, we should probably suppress these by default. Closes #7626 --- video/out/placebo/utils.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/video/out/placebo/utils.c b/video/out/placebo/utils.c index 79f313872c..616914c27b 100644 --- a/video/out/placebo/utils.c +++ b/video/out/placebo/utils.c @@ -27,8 +27,6 @@ static const enum pl_log_level probing_map(enum pl_log_level level) { switch (level) { case PL_LOG_FATAL: - return PL_LOG_ERR; - case PL_LOG_ERR: case PL_LOG_WARN: return PL_LOG_INFO; -- cgit v1.2.3