我如何在 Sentry 中执行自定义事件来添加用户名和电子邮件来跟踪代码颤振中的问题我有软件包并且正在运行,但我不知道如何添加用户名和电子邮件来跟踪
我尝试这段代码 Sentry.configureScope((scope) { 范围.setUser(SentryUser( id: '唯一用户 ID', 用户名:'您的用户名', 电子邮件:'[电子邮件受保护]',
我相信这就是您所需要的 -> https://docs.sentry.io/platforms/flutter/enriching-events/identify-user/
基本上你可以像这样配置范围
Sentry.configureScope(
(scope) => scope.setUser(SentryUser(id: '1234', email: '[email protected]')),
);