We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0682b5b commit fda13c2Copy full SHA for fda13c2
Sources/Sentry/SentryClient.m
@@ -117,8 +117,8 @@ - (instancetype)initWithOptions:(SentryOptions *)options
117
118
// Uses DEFAULT priority (not LOW) because captureLogs() is called synchronously during
119
// app lifecycle events (willResignActive, willTerminate) and needs to complete quickly.
120
- dispatch_queue_attr_t attributes = dispatch_queue_attr_make_with_qos_class(
121
- DISPATCH_QUEUE_SERIAL, DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
+ dispatch_queue_attr_t attributes
+ = dispatch_queue_attr_make_with_qos_class(DISPATCH_QUEUE_SERIAL, QOS_CLASS_DEFAULT, 0);
122
SentryDispatchQueueWrapper *logBatcherQueue =
123
[[SentryDispatchQueueWrapper alloc] initWithName:"io.sentry.log-batcher"
124
attributes:attributes];
0 commit comments