aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/sentryintegration.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2024-08-15 22:01:18 +0200
committerGitHub Enterprise <[email protected]>2024-08-15 22:01:18 +0200
commit50cb5ce35a9d58d4d156d3ba8f728d66b05b73e0 (patch)
tree86a94e21f678aa5ed97387bb58237305116a67c6 /src/zenserver/sentryintegration.cpp
parentprevent new block in gc (#118) (diff)
downloadzen-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.cpp5
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);
}
}
}