From 0cd246a6ceba416f55d9671fa0edd16732843c96 Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Thu, 22 Feb 2024 14:54:33 -0600 Subject: [PATCH] video: make missing radeon_powersave files quieter When the plugin is overloaded to non-radeon files it shouldn't be so noisy. --- tuned/plugins/plugin_video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuned/plugins/plugin_video.py b/tuned/plugins/plugin_video.py index 0d5523b..e6c3d0b 100644 --- a/tuned/plugins/plugin_video.py +++ b/tuned/plugins/plugin_video.py @@ -82,7 +82,7 @@ class VideoPlugin(base.Plugin): va = str(re.sub(r"(\s*:\s*)|(\s+)|(\s*;\s*)|(\s*,\s*)", " ", value)).split() if not os.path.exists(sys_files["method"]): if not sim: - log.warn("radeon_powersave is not supported on '%s'" % device) + log.debug("radeon_powersave is not supported on '%s'" % device) return None for v in va: if v in ["default", "auto", "low", "mid", "high"]: