我在iOS应用中应用了sentry,但如果应用异常关闭,就会陷入sentry问题。但我无法捕捉到401
和403
等错误。
如何设置它以获取状态异常值?
我的哨兵在下面
SentrySDK.start { options in
options.dsn = *dsn value
options.debug = true
options.tracesSampleRate = 1.0
options.diagnosticLevel = SentryLevel.debug
options.enableCoreDataTracking = true
}
1条答案
按热度按时间zf9nrax11#
Sentry最近发布了一个可可SDK的捕获HTTP client errors automatically。只有响应代码在500和599之间的HTTP客户端错误才会被默认捕获为错误事件,但您可以使用
failedRequestStatusCodes
来更改此行为: