From b5101320f83def7121f7b37d4bd3494305f6ad6c Mon Sep 17 00:00:00 2001 From: Simon Lin Date: Fri, 31 Dec 2021 14:37:51 +0800 Subject: [PATCH] [posix-netif] reduce excess WARN logs (#7264) --- src/posix/platform/netif.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posix/platform/netif.cpp b/src/posix/platform/netif.cpp index e094f9edf..55e931b84 100644 --- a/src/posix/platform/netif.cpp +++ b/src/posix/platform/netif.cpp @@ -962,7 +962,7 @@ static void processNetifAddrEvent(otInstance *aInstance, struct nlmsghdr *aNetli } default: - otLogWarnPlat("[netif] Unexpected address type (%d).", (int)rta->rta_type); + otLogDebgPlat("[netif] Unexpected address type (%d).", (int)rta->rta_type); break; } }