aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/sentryintegration.cpp
Commit message (Collapse)AuthorAgeFilesLines
* add missing unistd.h includeStefan Boberg2026-02-211-5/+2
|
* eliminated use of int for log levelsStefan Boberg2026-02-211-7/+7
| | | | also clang-format
* got rid of zen::logging::level namespaceStefan Boberg2026-02-211-2/+2
|
* fixed up various naming issuesStefan Boberg2026-02-211-16/+16
|
* initial experimental attempt at removing dependency on spdlog in favour of a ↵Stefan Boberg2026-02-211-64/+50
| | | | | | native implementation in zencore this does not include the async logging support yet and is mostly 1:1 to spdlog but the goal is to simplify and customize
* 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")