1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-02 09:47:03 +03:00

network: link: downgrade log level

The error is harmless, and will be ignored. Let's downgrade log level.

(cherry picked from commit 83e7c37b19bd36c78b235ac3047b758fcf82ad78)
(cherry picked from commit 1db3be80337b79e3b9afda9d50c61e6aed5aff28)
(cherry picked from commit 23f2ff3143317022f61a15397e6f2178d46126a2)
This commit is contained in:
Yu Watanabe 2021-04-28 22:17:39 +09:00 committed by Zbigniew Jędrzejewski-Szmek
parent 941b1b86fe
commit 00c870e1fd

View File

@ -3843,7 +3843,7 @@ 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;
}