We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58aaf24 commit 807d4cfCopy full SHA for 807d4cf
dev-packages/browser-integration-tests/utils/helpers.ts
@@ -16,7 +16,6 @@ export const envelopeUrlRegex = /\.sentry\.io\/api\/\d+\/envelope\//;
16
export const envelopeParser = (request: Request | null): unknown[] => {
17
// https://develop.sentry.dev/sdk/envelopes/
18
const envelope = request?.postData() || '';
19
- console.log(envelope);
20
21
// Third row of the envelop is the event payload.
22
return envelope.split('\n').map(line => {
0 commit comments