Skip to content

Commit f264580

Browse files
committed
Remove options xhr, history and dom from deno breadcrumbs
1 parent 961d472 commit f264580

File tree

1 file changed

+38
-0
lines changed
  • docs/platforms/javascript/guides/deno/configuration/integrations

1 file changed

+38
-0
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Breadcrumbs
3+
excerpt: ""
4+
description: "Wraps native APIs to capture breadcrumbs. (default)"
5+
sidebar_order: 1
6+
notSupported:
7+
- javascript.electron
8+
---
9+
10+
_Import name: `Sentry.breadcrumbsIntegration`_
11+
12+
This integration is [enabled by default](./../#modifying-default-integrations).
13+
14+
This integration wraps native APIs to capture breadcrumbs. By default, the Sentry SDK wraps all APIs.
15+
You can opt-out of capturing breadcrumbs for specific parts of your application (e.g. do not capture `console.log` calls as breadcrumbs) via the options below.
16+
17+
In
18+
19+
## Options
20+
21+
### `console`
22+
23+
_Type: `boolean`_
24+
25+
Log calls to `console.log`, `console.debug`, etc.
26+
27+
### `fetch`
28+
29+
_Type: `boolean`_
30+
31+
Log HTTP requests done with the Fetch API
32+
33+
### `sentry`
34+
35+
_Type: `boolean`_
36+
37+
Log whenever we send an event to the server.
38+

0 commit comments

Comments
 (0)