Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

- Improve scene tree data capture performance ([#373](https://github.com/getsentry/sentry-godot/pull/373))
- Set device.name to OS hostname on Windows/Linux dedicated servers ([#391](https://github.com/getsentry/sentry-godot/pull/391))
- Prevent usage of Godot logger during crash handling on Windows/Linux ([#398](https://github.com/getsentry/sentry-godot/pull/398))

### Fixes

Expand Down
1 change: 1 addition & 0 deletions src/sentry/native/native_sdk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,7 @@ void NativeSDK::init(const PackedStringArray &p_global_attachments, const Callab
sentry_options_set_sample_rate(options, SentryOptions::get_singleton()->get_sample_rate());
sentry_options_set_max_breadcrumbs(options, SentryOptions::get_singleton()->get_max_breadcrumbs());
sentry_options_set_sdk_name(options, "sentry.native.godot");
sentry_options_set_logger_enabled_when_crashed(options, false);

// Establish handler path.
String handler_fn;
Expand Down
Loading