From adc9ef60fc014e91111c5f80aeb879f9e451c928 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Wed, 7 Apr 2010 11:31:38 -0700 Subject: [PATCH] logging: move config file logging options into their own section --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 142c1af1f8..1974ec19b7 100644 --- a/src/main.c +++ b/src/main.c @@ -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;