summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLubomir Rintel <lkundrak@v3.sk>2023-02-16 13:25:17 +0100
committerThomas Haller <thaller@redhat.com>2023-03-29 11:49:59 +0200
commit0a549bfad27527ac5fadd5cdfcc47c16889767ea (patch)
treeb6d175853429b8519913809d7b0d4cc07e48054c
parent090ff4ae95f5a04c0bfbb636cd0d70611c7c3ee4 (diff)
downloadNetworkManager-0a549bfad27527ac5fadd5cdfcc47c16889767ea.tar.gz
platform: increase log level for some failures
These are not expected to happen. While probably harmless, we should notice when they do.
-rw-r--r--src/libnm-platform/nm-linux-platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libnm-platform/nm-linux-platform.c b/src/libnm-platform/nm-linux-platform.c
index 367faa9ceb..d0f474195f 100644
--- a/src/libnm-platform/nm-linux-platform.c
+++ b/src/libnm-platform/nm-linux-platform.c
@@ -7458,7 +7458,7 @@ again:
errsv = errno;
if (errsv == EINTR && try_count++ < 100)
goto again;
- _LOGD("netlink: nl-send-nlmsghdr: failed sending message: %s (%d)",
+ _LOGI("netlink: nl-send-nlmsghdr: failed sending message: %s (%d)",
nm_strerror_native(errsv),
errsv);
return -nm_errno_from_native(errsv);
@@ -7497,7 +7497,7 @@ _netlink_send_nlmsg(NMPlatform *platform,
nle = nl_send_auto(priv->sk_x[netlink_protocol], nlmsg);
if (nle < 0) {
- _LOGD("netlink: nl-send-nlmsg: failed sending message: %s (%d)", nm_strerror(nle), nle);
+ _LOGI("netlink: nl-send-nlmsg: failed sending message: %s (%d)", nm_strerror(nle), nle);
return nle;
}