diff options
| author | Michael Biebl <biebl@debian.org> | 2012-10-26 21:32:57 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2012-10-26 21:32:57 +0200 |
| commit | 36cb2f364a821e1be50b23e03a18891ec55adb06 (patch) | |
| tree | dcc7ff4019373acf1583c3271c4efbddbf43aa6c /src/nm-policy-hosts.c | |
| parent | 8c98b34228abb4dfde822ad89106b4d8b2287639 (diff) | |
Imported Upstream version 0.9.6.4 upstream/0.9.6.4
Diffstat (limited to 'src/nm-policy-hosts.c')
| -rw-r--r-- | src/nm-policy-hosts.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nm-policy-hosts.c b/src/nm-policy-hosts.c index 8bbd1d3b..94eeac4f 100644 --- a/src/nm-policy-hosts.c +++ b/src/nm-policy-hosts.c @@ -67,16 +67,16 @@ nm_policy_hosts_clean_etc_hosts (void) GString *new; if (!g_file_get_contents (SYSCONFDIR "/hosts", &contents, &contents_len, &error)) { - nm_log_warn (LOGD_DNS, "couldn't read " SYSCONFDIR "/hosts: (%d) %s", - error ? error->code : 0, - (error && error->message) ? error->message : "(unknown)"); + nm_log_dbg (LOGD_DNS, "couldn't read " SYSCONFDIR "/hosts: (%d) %s", + error ? error->code : 0, + (error && error->message) ? error->message : "(unknown)"); g_clear_error (&error); return; } new = nm_policy_get_etc_hosts (contents, contents_len); if (new && new->len) { - nm_log_info (LOGD_DNS, "Cleaning leftovers from /etc/hosts"); + nm_log_dbg (LOGD_DNS, "Cleaning leftovers from /etc/hosts"); g_clear_error (&error); if (!g_file_set_contents (SYSCONFDIR "/hosts", new->str, -1, &error)) { |