diff options
| author | Stefan Boberg <[email protected]> | 2024-08-15 22:01:18 +0200 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-08-15 22:01:18 +0200 |
| commit | 50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0 (patch) | |
| tree | 86a94e21f678aa5ed97387bb58237305116a67c6 /src/zenserver/sentryintegration.cpp | |
| parent | prevent new block in gc (#118) (diff) | |
| download | zen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.tar.xz zen-50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0.zip | |
enable sentry on arm64 (#119)
* enable sentry on arm64
Diffstat (limited to 'src/zenserver/sentryintegration.cpp')
| -rw-r--r-- | src/zenserver/sentryintegration.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/zenserver/sentryintegration.cpp b/src/zenserver/sentryintegration.cpp index 5d2b851d1..255030b2b 100644 --- a/src/zenserver/sentryintegration.cpp +++ b/src/zenserver/sentryintegration.cpp @@ -300,7 +300,10 @@ SentryIntegration::LogStartupInformation() } else { - ZEN_WARN("sentry_init returned failure! (error code: {})", m_SentryErrorCode); + ZEN_WARN( + "sentry_init returned failure! (error code: {}) note that sentry expects crashpad_handler to exist alongside the running " + "executable", + m_SentryErrorCode); } } } |