From: Yu Watanabe Date: Wed, 28 Apr 2021 13:15:40 +0000 (+0900) Subject: network: dhcp4: downgrade log level X-Git-Tag: v249-rc1~327^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dec2ed3e75d12d5d483cf115891fce603f14a224;p=thirdparty%2Fsystemd.git network: dhcp4: downgrade log level It is not necessary to log such information on higher level. --- diff --git a/src/network/networkd-dhcp4.c b/src/network/networkd-dhcp4.c index 75ee2ea8ad3..7c8e508da82 100644 --- a/src/network/networkd-dhcp4.c +++ b/src/network/networkd-dhcp4.c @@ -358,7 +358,7 @@ static int link_set_dhcp_static_routes(Link *link, struct in_addr *ret_default_g /* if the DHCP server returns both a Classless Static Routes option and a Static Routes option, * the DHCP client MUST ignore the Static Routes option. */ if (classless_route && static_route) - log_link_warning(link, "Classless static routes received from DHCP server: ignoring static-route option"); + log_link_debug(link, "Classless static routes received from DHCP server: ignoring static-route option"); r = route_new(&route); if (r < 0)