mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-27 15:10:09 +01:00
dns: log when dnsmasq process exits normally
This commit is contained in:
parent
ec53ed2cba
commit
a64d70f0df
1 changed files with 3 additions and 1 deletions
|
|
@ -530,8 +530,10 @@ child_quit (NMDnsPlugin *plugin, gint status)
|
|||
if (err) {
|
||||
_LOGW ("dnsmasq exited with error: %s",
|
||||
nm_utils_dnsmasq_status_to_string (err, NULL, 0));
|
||||
} else
|
||||
} else {
|
||||
_LOGD ("dnsmasq exited normally");
|
||||
failed = FALSE;
|
||||
}
|
||||
} else if (WIFSTOPPED (status))
|
||||
_LOGW ("dnsmasq stopped unexpectedly with signal %d", WSTOPSIG (status));
|
||||
else if (WIFSIGNALED (status))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue