Skip to content

Commit

Permalink
Disable tracking app hangs and HTTP client errors by default
Browse files Browse the repository at this point in the history
Co-authored-by: Gio Lodi <[email protected]>
  • Loading branch information
itsmeichigo and mokagio authored Aug 2, 2023
1 parent 1d3bb80 commit d841ba6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ public extension CrashLoggingDataProvider {
return config.trackUserInteraction
}

/// App hang tracking is enabled by default.
/// App hang tracking is disabled by default to avoid unexpected events being tracked.
var enableAppHangTracking: Bool {
return true
return false
}

/// HTTP client errors are captured by default.
/// HTTP client errors are disabled by default to avoid unexpected events being tracked.
var enableCaptureFailedRequests: Bool {
return true
return false
}
}

0 comments on commit d841ba6

Please sign in to comment.