From 2f22d2a1eff3b5fcbdfc66dbd7698215fdd2f4fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Tomko?= Date: Wed, 28 Feb 2024 13:32:42 +0100 Subject: [PATCH] remote: add VIR_ERR_NO_NETWORK_METADATA to daemonErrorLogFilter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Similar to other VIR_ERR_NO_* errors, we don't want to spam the daemon log with these messages. Signed-off-by: Ján Tomko Reviewed-by: Michal Privoznik --- 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 657c053f6f..9e82132654 100644 --- a/src/remote/remote_daemon.c +++ b/src/remote/remote_daemon.c @@ -107,6 +107,7 @@ static int daemonErrorLogFilter(virErrorPtr err, int priority) case VIR_ERR_NO_SERVER: case VIR_ERR_NO_CLIENT: case VIR_ERR_NO_HOSTNAME: + case VIR_ERR_NO_NETWORK_METADATA: return VIR_LOG_DEBUG; }