aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/sentryintegration.cpp
Commit message (Collapse)AuthorAgeFilesLines
* add sentry-sdk logger (#793)Stefan Boberg12 days1-8/+54
| | | | | eliminates spurious sentry log output during startup as the new channel defaults to WARN The level can be overridden via `--log-debug=sentry-sdk` or `--log-info=sentry-sdk`
* Make sure we call the previous terminate handle if present when we intercept ↵Dan Engelbrecht2025-09-261-3/+10
| | | | | | terminate calls (#514) Improvement: Make sure we call the previous terminate handle if present when we intercept terminate calls Improvement: Avoid allocating memory for call stack in terminate handle and assert callback
* change default sentry dsn to one listed on Sentry setup page (#504)Dan Engelbrecht2025-09-221-1/+1
|
* sentry config (#430)Dan Engelbrecht2025-06-121-8/+12
| | | | | | | | | | - Feature: Added `--sentry-environment` to `zen` and `zenserver` - Feature: Added `--sentry-debug` to `zen` and `zenserver` - Feature: Added environment variable parsing for the following options: - `UE_ZEN_SENTRY_ENABLED`: `--no-sentry` (inverted) - `UE_ZEN_SENTRY_DEBUG`: `--sentry-debug` - `UE_ZEN_SENTRY_ALLOWPERSONALINFO`: `--sentry-allow-personal-info` - `UE_ZEN_SENTRY_DSN`: `--sentry-dsn` - `UE_ZEN_SENTRY_ENVIRONMENT`: `--sentry-environment`
* revert 61b4a88f and cadaad63Dan Engelbrecht2025-06-101-12/+8
|
* add sentry configurations options for debug/environmentDan Engelbrecht2025-06-101-8/+12
| | | | | add env-variable parsing for sentry option
* `--sentry-dsn` option for zen command line and zenserver to control Sentry ↵Dan Engelbrecht2025-06-091-1/+6
| | | | | reporting endpoint (#427) moved sentry database path to temporary directory for zen commandline
* add sentry for zen command (#373)Dan Engelbrecht2025-05-061-0/+327
* refactor sentry integration and add to zen command line tool * move add_ldflags("-framework Security")