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 bd6b952 commit db0b856Copy full SHA for db0b856
1 file changed
packages/core/src/transports/base.ts
@@ -60,6 +60,7 @@ export function createTransport(
60
const recordEnvelopeLoss = (reason: EventDropReason): void => {
61
// Don't record outcomes for client reports - we don't want to create a feedback loop if client reports themselves fail to send
62
if (envelopeContainsItemType(filteredEnvelope, ['client_report'])) {
63
+ DEBUG_BUILD && debug.warn(`Dropping client report. Will not send outcomes (reason: ${reason}).`);
64
return;
65
}
66
forEachEnvelopeItem(filteredEnvelope, (item, type) => {
0 commit comments