Skip to content

Commit

Permalink
log all allocations of SentryBreadcrumbTracker
Browse files Browse the repository at this point in the history
  • Loading branch information
armcknight committed Aug 29, 2023
1 parent 475eb9f commit 1afa909
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Sources/Sentry/SentryBreadcrumbTracker.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@

@implementation SentryBreadcrumbTracker

- (instancetype)init
{
NSLog(@"%@", NSThread.callStackSymbols);
return [super init];
}

- (void)startWithDelegate:(id<SentryBreadcrumbDelegate>)delegate
{
NSLog(@"Starting %@ with delegate: %@", self, delegate);
Expand Down

0 comments on commit 1afa909

Please sign in to comment.