X-Git-Url: https://arthur.barton.de/gitweb/?a=blobdiff_plain;f=src%2Fappconfig.c;h=ae92ad0454a16444aeff44443913e6d79c5a5dfa;hb=9dccc16d3763392f0b13349de18c3a838a667653;hp=71ff4b75e255a36977685aa049e6d28d43da7691;hpb=8af280907530e1bcfffd4c8ed38fb311de64f0ab;p=netdata.git diff --git a/src/appconfig.c b/src/appconfig.c index 71ff4b75..ae92ad04 100644 --- a/src/appconfig.c +++ b/src/appconfig.c @@ -337,7 +337,7 @@ const char *appconfig_set_default(struct config *root, const char *section, cons { struct config_option *cv; - debug(D_CONFIG, "request to set config in section '%s', name '%s', value '%s'", section, name, value); + debug(D_CONFIG, "request to set default config in section '%s', name '%s', value '%s'", section, name, value); struct section *co = appconfig_section_find(root, section); if(!co) return appconfig_set(root, section, name, value); @@ -558,7 +558,7 @@ void appconfig_generate(struct config *root, BUFFER *wb, int only_changed) if(only_changed && !changed) continue; if(!used) { - buffer_sprintf(wb, "\n# node '%s' is not used.", co->name); + buffer_sprintf(wb, "\n# section '%s' is not used.", co->name); } buffer_sprintf(wb, "\n[%s]\n", co->name);