logging: move config file logging options into their own section

This commit is contained in:
Dan Williams
2010-04-07 11:31:38 -07:00
parent da98780506
commit adc9ef60fc

View File

@@ -322,8 +322,8 @@ parse_config_file (const char *filename,
*dhcp_client = g_key_file_get_value (config, "main", "dhcp", NULL);
*log_level = g_key_file_get_value (config, "main", "log-level", NULL);
*log_domains = g_key_file_get_value (config, "main", "log-domains", NULL);
*log_level = g_key_file_get_value (config, "logging", "level", NULL);
*log_domains = g_key_file_get_value (config, "logging", "domains", NULL);
g_key_file_free (config);
return TRUE;