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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Fixes

- Fix warning about instantiated `SentryLogger` used as default value on startup ([#505](https://github.com/getsentry/sentry-godot/pull/505))

### Changed

- The `enable_logs` option is now turned off by default to align with other Sentry SDKs. If you want to keep it enabled, go to **Sentry > Options > Enable Logs** in the **Project Settings** and turn it on. ([#484](https://github.com/getsentry/sentry-godot/pull/484))
Expand Down
2 changes: 1 addition & 1 deletion src/sentry/sentry_sdk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ void SentrySDK::_bind_methods() {
ClassDB::bind_method(D_METHOD("_get_before_send"), &SentrySDK::get_before_send);
ClassDB::bind_method(D_METHOD("_demo_helper_crash_app"), &SentrySDK::_demo_helper_crash_app);

BIND_PROPERTY_READONLY(SentrySDK, PropertyInfo(Variant::OBJECT, "logger"), get_logger);
BIND_PROPERTY_READONLY(SentrySDK, PropertyInfo(Variant::OBJECT, "logger", PROPERTY_HINT_TYPE_STRING, "SentryLogger", PROPERTY_USAGE_NONE), get_logger);
}

SentrySDK::SentrySDK() {
Expand Down
Loading