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 9fbbd5a commit e7bb00dCopy full SHA for e7bb00d
packages/replay/src/replay.ts
@@ -204,13 +204,14 @@ export class ReplayContainer implements ReplayContainerInterface {
204
if (count > 500) {
205
const breadcrumb = createBreadcrumb({
206
category: 'replay.mutations',
207
- message: `A mutation with ${count} changes was recorded, which indicate slow performance.`,
+ message: `A mutation with ${count} changes was recorded, which may indicate slow performance.`,
208
data: {
209
mutationsCount: count,
210
},
211
});
212
this._createCustomBreadcrumb(breadcrumb);
213
}
214
+ // `true` means we use the regular mutation handling by rrweb
215
return true;
216
217
0 commit comments