From: Ján Tomko Date: Wed, 28 Feb 2024 12:32:42 +0000 (+0100) Subject: remote: add VIR_ERR_NO_NETWORK_METADATA to daemonErrorLogFilter X-Git-Tag: v10.2.0-rc1~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2f22d2a1eff3b5fcbdfc66dbd7698215fdd2f4fa;p=thirdparty%2Flibvirt.git remote: add VIR_ERR_NO_NETWORK_METADATA to daemonErrorLogFilter 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 --- 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; }