Skip to content

Commit

Permalink
Changed to use NRLOG_AGENT_WARNING
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruin-NR committed Feb 5, 2025
1 parent 6aca4e4 commit 6beaf72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Agent/Analytics/PersistentEventStore.m
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ - (void)performWrite:(void (^)(void))writeBlock {
dispatch_async(self.writeQueue, ^{
__strong PersistentEventStore *strongSelf = weakSelf;
if (!strongSelf) { // Ensure strongSelf is not nil
NRLOG_WARNING(@"A block was scheduled but PersistentEventStore was deallocated before running");
NRLOG_AGENT_WARNING(@"A block was scheduled but PersistentEventStore was deallocated before running");
return;
}

Expand Down

0 comments on commit 6beaf72

Please sign in to comment.