Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### API changes

- App Hang Tracking for iOS is now disabled by default, until this functionality is more stable. If you want to use it in your applications then you'll need to enable this manually. ([#4320](https://github.com/getsentry/sentry-dotnet/pull/4320))

### Features

- Added StartSpan and GetTransaction methods to the SentrySdk ([#4303](https://github.com/getsentry/sentry-dotnet/pull/4303))
Expand Down
4 changes: 2 additions & 2 deletions src/Sentry/Platforms/Cocoa/SentryOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ internal NativeOptions(SentryOptions options)
/// <summary>
/// When enabled, the SDK tracks when the application stops responding for a specific amount of
/// time defined by the <see cref="AppHangTimeoutInterval"/> option.
/// The default value is <c>true</c> (enabled).
/// The default value is <c>false</c> (disabled).
/// </summary>
/// <remarks>
/// See https://docs.sentry.io/platforms/apple/configuration/app-hangs/
/// </remarks>
public bool EnableAppHangTracking { get; set; } = true;
public bool EnableAppHangTracking { get; set; } = false;

/// <summary>
/// IMPORTANT: This feature is experimental and may have bugs.
Expand Down
Loading