From c5617f0b9918552a752aef6a562fe28ffa0d0afe Mon Sep 17 00:00:00 2001 From: Jeff Tung <100387939+jtung-apple@users.noreply.github.com> Date: Sat, 20 Jul 2024 09:50:18 -0700 Subject: [PATCH] Fixed log string --- src/darwin/Framework/CHIP/MTRDevice.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/darwin/Framework/CHIP/MTRDevice.mm b/src/darwin/Framework/CHIP/MTRDevice.mm index 9f8e7f67a5ab11..b9e76b9c5e75ce 100644 --- a/src/darwin/Framework/CHIP/MTRDevice.mm +++ b/src/darwin/Framework/CHIP/MTRDevice.mm @@ -2124,7 +2124,7 @@ - (void)_reconcilePersistedClustersWithStorage } } - MTR_LOG_ERROR("%@ ", self); + MTR_LOG_ERROR("%@ Storage missing %lu / %lu clusters - reconciling in-memory records", self, static_cast(clusterPathsToRemove.count), static_cast(_persistedClusters.count)); [_persistedClusters minusSet:clusterPathsToRemove]; }