From dec2ed3e75d12d5d483cf115891fce603f14a224 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Wed, 28 Apr 2021 22:15:40 +0900 Subject: [PATCH] network: dhcp4: downgrade log level It is not necessary to log such information on higher level. --- src/network/networkd-dhcp4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.3