]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: dhcp4: downgrade log level
authorYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 28 Apr 2021 13:15:40 +0000 (22:15 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Wed, 28 Apr 2021 18:12:29 +0000 (03:12 +0900)
It is not necessary to log such information on higher level.

src/network/networkd-dhcp4.c

index 75ee2ea8ad37cd158d78aac3242bdac90d0d544b..7c8e508da8252d4819de264f0f56ca5ae7eb274f 100644 (file)
@@ -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)