From: Martin Kletzander Date: Thu, 15 Jul 2021 10:06:55 +0000 (+0200) Subject: util: Make one debug message nicer X-Git-Tag: v7.6.0-rc1~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e2bc2dfa1e29b98846a3d7ccd6dee9e72fb8c4e1;p=thirdparty%2Flibvirt.git util: Make one debug message nicer This was bothering someone as the debug message looked like there was an issue despite it being just a debug message. Change it to what is actually happening and why the name is being skipped. Signed-off-by: Martin Kletzander Reviewed-by: Andrea Bolognani --- diff --git a/src/util/virresctrl.c b/src/util/virresctrl.c index a7d36f492c..2a3bcda6f5 100644 --- a/src/util/virresctrl.c +++ b/src/util/virresctrl.c @@ -542,7 +542,7 @@ virResctrlGetCacheInfo(virResctrlInfo *resctrl, type = virResctrlTypeFromString(endptr); if (type < 0) { - VIR_DEBUG("Cannot parse resctrl cache info type '%s'", endptr); + VIR_DEBUG("Ignoring resctrl cache info with suffix '%s'", endptr); continue; }