我正在使用sentry + timber
离线缓存集成来记录我的应用程序中的所有错误。
private void initSentry() {
String cacheDir = getCacheDir().getPath();
SentryAndroid.init(this, options -> {
options.setCacheDirPath(cacheDir);
options.addIntegration(
new SendCachedEnvelopeFireAndForgetIntegration(
new SendFireAndForgetEnvelopeSender(options::getCacheDirPath)
)
);
options.addIntegration(new SentryTimberIntegration(SentryLevel.ERROR, SentryLevel.INFO));
});
}
在生产工人经理的某些设备中根本不起作用。我怎样才能拦截工人经理的错误并用木材记录它们,这样我就可以在哨兵上看到它们
谢谢