From 7fcf8d9d69ae85e55775cf2cb1d7aeae63b49df6 Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Sat, 20 Oct 2012 15:40:41 -0400 Subject: [PATCH] Log file name passed to virConfReadFile --- src/util/conf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/util/conf.c b/src/util/conf.c index 4df62b1e20..346b3df7c1 100644 --- a/src/util/conf.c +++ b/src/util/conf.c @@ -35,6 +35,7 @@ #include "conf.h" #include "util.h" #include "c-ctype.h" +#include "logging.h" #include "memory.h" #include "virfile.h" @@ -763,6 +764,8 @@ virConfReadFile(const char *filename, unsigned int flags) int len; virConfPtr conf; + VIR_DEBUG("filename=%s", NULLSTR(filename)); + if (filename == NULL) { virConfError(NULL, VIR_ERR_INVALID_ARG, __FUNCTION__); return NULL;