From 6b03eacb348d2d8266b17be15bacbdaf7737e2e5 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Fri, 10 Feb 2017 15:00:21 +0100 Subject: [PATCH] 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 --- src/platform/nm-linux-platform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c index 5e3919ef1..b5c68e4ba 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;