mirror of
https://github.com/espressif/openthread.git
synced 2026-08-26 12:11:17 +00:00
[logging] refine NOTE and WARN logs (#7369)
This commit refines `NOTE` and `WARN` logs: - Certain `INFO` and `WARN` logs are changed to `INFO` since they are normal situations.
This commit is contained in:
@@ -168,11 +168,11 @@ void TestNetifMulticastAddresses(void)
|
||||
VerifyMulticastAddressList(netif, &addresses[0], 8);
|
||||
|
||||
IgnoreError(address.FromString(kTestAddress1)); // same as netifAddress (internal)
|
||||
VerifyOrQuit(netif.UnsubscribeExternalMulticast(address) == kErrorInvalidArgs,
|
||||
VerifyOrQuit(netif.UnsubscribeExternalMulticast(address) == kErrorRejected,
|
||||
"UnsubscribeExternalMulticast() did not fail when address was not external");
|
||||
|
||||
IgnoreError(address.FromString(kRealmLocalAllMpl));
|
||||
VerifyOrQuit(netif.UnsubscribeExternalMulticast(address) == kErrorInvalidArgs,
|
||||
VerifyOrQuit(netif.UnsubscribeExternalMulticast(address) == kErrorRejected,
|
||||
"UnsubscribeExternalMulticast() did not fail when address was fixed address");
|
||||
|
||||
netif.UnsubscribeAllRoutersMulticast();
|
||||
|
||||
Reference in New Issue
Block a user