[Darwin] The data value comparison function in MTRDevice incorrectly complains about nil comparison (#32863)

diff --git a/src/darwin/Framework/CHIP/MTRDevice.mm b/src/darwin/Framework/CHIP/MTRDevice.mm
index 730a402..1791661 100644
--- a/src/darwin/Framework/CHIP/MTRDevice.mm
+++ b/src/darwin/Framework/CHIP/MTRDevice.mm
@@ -2008,7 +2008,7 @@
         return YES;
     }
     if (!one || !theOther) {
-        MTR_LOG_ERROR("%@ attribute data-value comparison does not expect a dictionary to be nil: %@ %@", self, one, theOther);
+        // Comparing against nil is expected, and should return NO quietly
         return NO;
     }