1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-26 14:04:03 +03:00

network: link: downgrade log level

The error is harmless, and will be ignored. Let's downgrade log level.
This commit is contained in:
Yu Watanabe 2021-04-28 22:17:39 +09:00
parent dec2ed3e75
commit 83e7c37b19

View File

@ -2450,7 +2450,7 @@ static int link_add(Manager *m, sd_netlink_message *message, Link **ret) {
sprintf(ifindex_str, "n%d", link->ifindex);
r = sd_device_new_from_device_id(&device, ifindex_str);
if (r < 0) {
log_link_warning_errno(link, r, "Could not find device, waiting for device initialization: %m");
log_link_debug_errno(link, r, "Could not find device, waiting for device initialization: %m");
return 0;
}