From: Cole Robinson Date: Sat, 20 Oct 2012 19:40:41 +0000 (-0400) Subject: Log file name passed to virConfReadFile X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7fcf8d9d69ae85e55775cf2cb1d7aeae63b49df6;p=libvirt.git Log file name passed to virConfReadFile --- 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;