We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59c9614 commit 1112821Copy full SHA for 1112821
1 file changed
packages/browser-sdk/src/bulkQueue.ts
@@ -297,10 +297,13 @@ export class BulkQueue {
297
consecutiveFailures: this.consecutiveFailures,
298
};
299
if (isPageLifecycleAbortError(error)) {
300
- this.logger?.debug("bulk retry scheduled (aborted during page teardown)", {
301
- ...logDetails,
302
- error,
303
- });
+ this.logger?.debug(
+ "bulk retry scheduled (aborted during page teardown)",
+ {
+ ...logDetails,
304
+ error,
305
+ },
306
+ );
307
} else {
308
this.logger?.info("bulk retry scheduled", logDetails);
309
}
0 commit comments