From: Michal Privoznik Date: Fri, 16 Apr 2021 14:48:32 +0000 (+0200) Subject: vircgroup: Debug print all arguments of virCgroupKillRecursiveInternal() X-Git-Tag: v7.3.0-rc1~182 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edce157f11ee90ab1e993443ff9ecfb3ce1530ca;p=thirdparty%2Flibvirt.git vircgroup: Debug print all arguments of virCgroupKillRecursiveInternal() Currently, only a subset of virCgroupKillRecursiveInternal() arguments is printed into debug logs. Print all of them. Signed-off-by: Michal Privoznik Reviewed-by: Pavel Hrdina --- diff --git a/src/util/vircgroup.c b/src/util/vircgroup.c index e7a94c47e4..96280a0a4e 100644 --- a/src/util/vircgroup.c +++ b/src/util/vircgroup.c @@ -2725,8 +2725,8 @@ virCgroupKillRecursiveInternal(virCgroup *group, g_autoptr(DIR) dp = NULL; struct dirent *ent; int direrr; - VIR_DEBUG("group=%p signum=%d pids=%p", - group, signum, pids); + VIR_DEBUG("group=%p signum=%d pids=%p taskFile=%s dormdir=%d", + group, signum, pids, taskFile, dormdir); if (virCgroupPathOfController(group, controller, "", &keypath) < 0) return -1;