From 37a1bd945899308d1c071bb885e5d1d9529d6b85 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Tue, 26 Aug 2025 13:57:42 +0200 Subject: [PATCH] daemon: Drop log level of VIR_ERR_NO_SUPPORT to debug The error code signals that the API the user called is not supported by the driver. This can happen with some hypervisor drivers which don't have everything implemented yet. There's no point in spamming the log with it. Closes: https://gitlab.com/libvirt/libvirt/-/issues/805 Signed-off-by: Peter Krempa Reviewed-by: Martin Kletzander --- src/remote/remote_daemon.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/remote/remote_daemon.c b/src/remote/remote_daemon.c index 1424d4cf5e..2973813548 100644 --- a/src/remote/remote_daemon.c +++ b/src/remote/remote_daemon.c @@ -108,6 +108,7 @@ static int daemonErrorLogFilter(virErrorPtr err, int priority) case VIR_ERR_NO_CLIENT: case VIR_ERR_NO_HOSTNAME: case VIR_ERR_NO_NETWORK_METADATA: + case VIR_ERR_NO_SUPPORT: return VIR_LOG_DEBUG; } -- 2.47.3