summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-02-10 15:00:21 +0100
committerThomas Haller <thaller@redhat.com>2017-02-10 15:02:28 +0100
commit6b03eacb348d2d8266b17be15bacbdaf7737e2e5 (patch)
treef9346d19565837e3ecedd67af014bc3eeea526bd
parentf549307ca5f7a6bf3e925497472616c87c8d4cbe (diff)
downloadNetworkManager-6b03eacb348d2d8266b17be15bacbdaf7737e2e5.tar.gz
platform: downgrade warning about failure to detect kernel support to debug
Also, as time goes by it is less likely to encounter a user where the kernel has no support. The most likely reason nowadays is that the user booted with "ipv6.disabled=1". https://bugzilla.redhat.com/show_bug.cgi?id=1421019
-rw-r--r--src/platform/nm-linux-platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c
index 5e3919ef18..b5c68e4ba0 100644
--- a/src/platform/nm-linux-platform.c
+++ b/src/platform/nm-linux-platform.c
@@ -298,7 +298,7 @@ _support_user_ipv6ll_get (void)
{
if (_support_user_ipv6ll_still_undecided ()) {
_support_user_ipv6ll = -1;
- _LOG2W ("kernel support for IFLA_INET6_ADDR_GEN_MODE %s", "failed to detect; assume no support");
+ _LOG2D ("kernel support for IFLA_INET6_ADDR_GEN_MODE %s", "failed to detect; assume no support");
return FALSE;
}
return _support_user_ipv6ll > 0;
@@ -2460,7 +2460,7 @@ static gboolean
_support_kernel_extended_ifa_flags_get (void)
{
if (_support_kernel_extended_ifa_flags_still_undecided ()) {
- _LOG2W ("support: kernel-extended-ifa-flags: unable to detect kernel support for handling IPv6 temporary addresses. Assume support");
+ _LOG2D ("support: kernel-extended-ifa-flags: unable to detect kernel support for handling IPv6 temporary addresses. Assume support");
_support_kernel_extended_ifa_flags = 1;
}
return _support_kernel_extended_ifa_flags;