Log the configfile name in verbose log, not only debug log (Thanks Han)
This commit is contained in:
parent
ac3541c28c
commit
a2031a8894
|
@ -248,7 +248,7 @@ static char *get_config_path(const char *override_configpath) {
|
||||||
*/
|
*/
|
||||||
static void parse_configuration(const char *override_configpath) {
|
static void parse_configuration(const char *override_configpath) {
|
||||||
char *path = get_config_path(override_configpath);
|
char *path = get_config_path(override_configpath);
|
||||||
DLOG("Parsing configfile %s\n", path);
|
LOG("Parsing configfile %s\n", path);
|
||||||
FREE(current_configpath);
|
FREE(current_configpath);
|
||||||
current_configpath = path;
|
current_configpath = path;
|
||||||
parse_file(path);
|
parse_file(path);
|
||||||
|
|
Loading…
Reference in New Issue