Features and fixes:
- ref: Add read-only scope property to Hub #975
Breaking Changes:
Migrating from 6.x to 7.x
We replaced the SentryLogLevel with SentryLevel, renamed logLevel to diagnosticLevel
on SentryOptions to align with other Sentry SDKs, and set the default diagnosticLevel to
SentryLevel.debug. Furthermore, we removed setting the logLevel statically on the SentrySDK.
Please use the SentryOptions to set the diagnosticLevel instead.
6.x
SentrySDK.start { options in
options.logLevel = SentryLogLevel.verbose
}
// Or
SentrySDK.logLevel = SentryLogLevel.verbose7.x
SentrySDK.start { options in
options.diagnosticLevel = SentryLevel.debug
}