Skip to content

Commit

Permalink
Clean up Sentry init (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-e authored Aug 7, 2024
1 parent 68e86e2 commit 1db03f9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ios/HackerNews/HNApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ struct Hacker_NewsApp: App {

SentrySDK.start { options in
options.dsn = "https://[email protected]/4506027753668608"
options.debug = true // Enabled debug when first installing is always helpful
#if DEBUG
options.debug = true
#else
options.debug = false
#endif
options.enableTracing = true

// Uncomment the following lines to add more data to your events
// options.attachScreenshot = true // This adds a screenshot to the error events
// options.attachViewHierarchy = true // This adds the view hierarchy to the error events
}
}

Expand Down

0 comments on commit 1db03f9

Please sign in to comment.