From: Michael Stapelberg Date: Wed, 28 Dec 2011 23:04:48 +0000 (+0100) Subject: Log the configfile name in verbose log, not only debug log (Thanks Han) X-Git-Tag: 4.2~166 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a2031a88949e3d9516bae275c24ac7a43d56e436;p=i3%2Fi3 Log the configfile name in verbose log, not only debug log (Thanks Han) --- 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);