Skip to content

Commit

Permalink
Merge 6fa81f2 into fded9f8
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrenskers authored Dec 6, 2022
2 parents fded9f8 + 6fa81f2 commit d7a9d1b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ This version adds a dependency on Swift.
### Features

- Properly demangle Swift class name (#2162)
- Enable File I/O APM per default (#2497)

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion Sources/Sentry/SentryOptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ - (instancetype)init
self.appHangTimeoutInterval = 2.0;
self.enableAutoBreadcrumbTracking = YES;
self.enableNetworkTracking = YES;
self.enableFileIOTracing = NO;
self.enableFileIOTracing = YES;
self.enableNetworkBreadcrumbs = YES;
_defaultTracesSampleRate = nil;
self.tracesSampleRate = _defaultTracesSampleRate;
Expand Down
2 changes: 1 addition & 1 deletion Tests/SentryTests/SentryOptionsTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ - (void)assertDefaultValues:(SentryOptions *)options
XCTAssertEqual(@[], options.inAppExcludes);
XCTAssertNil(options.urlSessionDelegate);
XCTAssertEqual(YES, options.enableSwizzling);
XCTAssertEqual(NO, options.enableFileIOTracing);
XCTAssertEqual(YES, options.enableFileIOTracing);
XCTAssertEqual(YES, options.enableAutoBreadcrumbTracking);

#if SENTRY_HAS_METRIC_KIT
Expand Down

0 comments on commit d7a9d1b

Please sign in to comment.