From: Susant Sahani Date: Mon, 16 Sep 2019 18:46:39 +0000 (+0200) Subject: network DHCP4: Dont mislead the logs. X-Git-Tag: v244-rc1~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61cda4d7964ff00dfa6260f84219720d9b97671a;p=thirdparty%2Fsystemd.git network DHCP4: Dont mislead the logs. The debug log making sense to the end user as an error. --- diff --git a/src/network/networkd-dhcp4.c b/src/network/networkd-dhcp4.c index 662770b50e3..c5644f844b8 100644 --- a/src/network/networkd-dhcp4.c +++ b/src/network/networkd-dhcp4.c @@ -198,7 +198,7 @@ static int link_set_dhcp_routes(Link *link) { if (n == -ENODATA) log_link_debug_errno(link, n, "DHCP: No routes received from DHCP server: %m"); else if (n < 0) - log_link_debug_errno(link, n, "DHCP error: could not get routes: %m"); + log_link_debug_errno(link, n, "DHCP: could not get routes: %m"); for (i = 0; i < n; i++) { switch (sd_dhcp_route_get_option(static_routes[i])) {