Skip to content

docs: match description of debug option with behavior since #820 #860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@

## Unreleased

### Features

- feat(log): support kv feature of log (#851) by @lcian
- Attributes added to a `log` record using the `kv` feature are now recorded as attributes on the log sent to Sentry.

### Fixes

- docs: match description of `debug` option with behavior since PR #820 ([#860](https://github.com/getsentry/sentry-rust/pull/860)) by @AlexTMjugador

## 0.41.0

### Breaking changes
Expand All @@ -15,7 +21,7 @@
- It's also possible to use `EventMapping::Combined` to map a `tracing` event to multiple items in Sentry.
- `ctx` in the signatures of `event_from_event`, `breadcrumb_from_event` and `log_from_event` has been changed to take `impl Into<Option<&'context Context<'context, S>>>` to avoid cloning the `Context` when mapping to multiple items.

### Features
### Features

- feat(core): emit debug log when calling capture_log but logs are disabled (#849) by @lcian

Expand Down
3 changes: 1 addition & 2 deletions sentry-core/src/clientoptions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ pub struct ClientOptions {
/// Enables debug mode.
///
/// In debug mode debug information is printed to stderr to help you understand what
/// sentry is doing. When the `log` feature is enabled, Sentry will instead
/// log to the `sentry` logger independently of this flag with the `Debug` level.
/// sentry is doing.
pub debug: bool,
/// The release to be sent with events.
pub release: Option<Cow<'static, str>>,
Expand Down
Loading