Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
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 4 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 4 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;
Comment thread
jamescrosswell marked this conversation as resolved.

/// <summary>
/// IMPORTANT: This feature is experimental and may have bugs.
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.