|
2 | 2 |
|
3 | 3 | #include "sentry.h"
|
4 | 4 | #include "sentry/contexts.h"
|
5 |
| -#include "sentry/environment.h" |
6 | 5 | #include "sentry/level.h"
|
7 | 6 | #include "sentry/native/native_event.h"
|
8 | 7 | #include "sentry/native/native_util.h"
|
@@ -219,7 +218,16 @@ void NativeSDK::initialize() {
|
219 | 218 | ERR_FAIL_NULL(ProjectSettings::get_singleton());
|
220 | 219 |
|
221 | 220 | sentry_options_t *options = sentry_options_new();
|
| 221 | + |
222 | 222 | sentry_options_set_dsn(options, SentryOptions::get_singleton()->get_dsn().utf8());
|
| 223 | + sentry_options_set_database_path(options, (OS::get_singleton()->get_user_data_dir() + "/sentry").utf8()); |
| 224 | + sentry_options_set_debug(options, SentryOptions::get_singleton()->is_debug_enabled()); |
| 225 | + sentry_options_set_release(options, SentryOptions::get_singleton()->get_release().utf8()); |
| 226 | + sentry_options_set_environment(options, SentryOptions::get_singleton()->get_environment().utf8()); |
| 227 | + // TODO: add dist |
| 228 | + sentry_options_set_sample_rate(options, SentryOptions::get_singleton()->get_sample_rate()); |
| 229 | + sentry_options_set_max_breadcrumbs(options, SentryOptions::get_singleton()->get_max_breadcrumbs()); |
| 230 | + sentry_options_set_sdk_name(options, "sentry.native.godot"); |
223 | 231 |
|
224 | 232 | // Establish handler path.
|
225 | 233 | String handler_fn;
|
@@ -247,14 +255,6 @@ void NativeSDK::initialize() {
|
247 | 255 | sentry_options_set_backend(options, NULL);
|
248 | 256 | }
|
249 | 257 |
|
250 |
| - sentry_options_set_database_path(options, (OS::get_singleton()->get_user_data_dir() + "/sentry").utf8()); |
251 |
| - sentry_options_set_sample_rate(options, SentryOptions::get_singleton()->get_sample_rate()); |
252 |
| - sentry_options_set_release(options, SentryOptions::get_singleton()->get_release().utf8()); |
253 |
| - sentry_options_set_debug(options, SentryOptions::get_singleton()->is_debug_enabled()); |
254 |
| - sentry_options_set_environment(options, sentry::environment::get_environment()); |
255 |
| - sentry_options_set_sdk_name(options, "sentry.native.godot"); |
256 |
| - sentry_options_set_max_breadcrumbs(options, SentryOptions::get_singleton()->get_max_breadcrumbs()); |
257 |
| - |
258 | 258 | // Attach LOG file.
|
259 | 259 | // TODO: Decide whether log-file must be trimmed before send.
|
260 | 260 | if (SentryOptions::get_singleton()->is_attach_log_enabled()) {
|
|
0 commit comments