Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,19 @@ try {
}
```

## Sending logs from shared environments

You can pass the scope directly into the logger API methods to make shared environments work.

```js
const scope = new Scope();
scope.setClient(client);

client.init(); // initializing has to be done after setting the client on the scope

Sentry.logger.info("my logger message", {}, { scope });
```

## Browser Extension Filter

If you notice that Sentry is not capturing error events from the browser extension, an Inbound Filter might be active.
Expand Down
Loading