From a2031a88949e3d9516bae275c24ac7a43d56e436 Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Thu, 29 Dec 2011 00:04:48 +0100 Subject: [PATCH] Log the configfile name in verbose log, not only debug log (Thanks Han) --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 47a701d2..c2ce8dcb 100644 --- a/src/config.c +++ b/src/config.c @@ -248,7 +248,7 @@ static char *get_config_path(const char *override_configpath) { */ static void parse_configuration(const char *override_configpath) { char *path = get_config_path(override_configpath); - DLOG("Parsing configfile %s\n", path); + LOG("Parsing configfile %s\n", path); FREE(current_configpath); current_configpath = path; parse_file(path); -- 2.39.5