Skip to content

Commit

Permalink
fix missed logging tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
kiel-apple committed Aug 19, 2024
1 parent f8391cf commit 465cd3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/darwin/Framework/CHIP/MTRDevice.mm
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ - (void)dealloc
[[NSNotificationCenter defaultCenter] removeObserver:_systemTimeChangeObserverToken];

// TODO: retain cycle and clean up https://github.com/project-chip/connectedhomeip/issues/34267
MTR_LOG("MTRDevice dealloc: %p", self);
MTR_LOG("%@ dealloc: %p", self, self);
}

- (NSString *)description
Expand Down
2 changes: 1 addition & 1 deletion src/darwin/Framework/CHIP/MTRDevice_Concrete.mm
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ - (void)dealloc
[[NSNotificationCenter defaultCenter] removeObserver:_systemTimeChangeObserverToken];

// TODO: retain cycle and clean up https://github.com/project-chip/connectedhomeip/issues/34267
MTR_LOG("MTRDevice dealloc: %p", self);
MTR_LOG("%@ dealloc: %p", self, self);
}

- (NSString *)description
Expand Down

0 comments on commit 465cd3f

Please sign in to comment.