You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,25 @@
2
2
3
3
## Unreleased
4
4
5
+
### Breaking changes
6
+
7
+
- refactor(logs): apply user attributes to log regardless of `send_default_pii` (#843) by @lcian
8
+
- User attributes should be applied to logs regardless of `send_default_pii`. Therefore, that parameter was removed from `sentry_core::Scope::apply_to_log`.
9
+
10
+
### Features
11
+
12
+
- feat(tracing): add support for logs (#840) by @lcian
13
+
- To capture `tracing` events as Sentry structured logs, enable the `logs` feature of the `sentry` crate.
14
+
- Then, initialize the SDK with `enable_logs: true` in your client options.
15
+
- Finally, set up a custom event filter to map events to logs based on criteria such as severity. For example:
0 commit comments