mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-16 11:33:54 +02:00
backtrace for rc-63
This commit is contained in:
parent
df62ba88cb
commit
c550620cb4
2 changed files with 9 additions and 0 deletions
|
@ -865,6 +865,10 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
|
|||
|
||||
_logger->setSessionID(accountManager->getSessionID());
|
||||
|
||||
#if HAS_CRASHPAD
|
||||
backtraceAnnotations->SetKeyValue("MetaverseSessionID", accountManager->getSessionID());
|
||||
#endif // HAS_CRASHPAD
|
||||
|
||||
if (steamClient) {
|
||||
qCDebug(interfaceapp) << "[VERSION] SteamVR buildID:" << steamClient->getSteamVRBuildID();
|
||||
}
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
#include <shared/RateCounter.h>
|
||||
#include <ThreadSafeValueCache.h>
|
||||
#include <shared/FileLogger.h>
|
||||
#include <shared/Crashpad.h>
|
||||
|
||||
#include <RunningMarker.h>
|
||||
|
||||
|
@ -707,5 +708,9 @@ private:
|
|||
|
||||
std::atomic<bool> _pendingIdleEvent { true };
|
||||
std::atomic<bool> _pendingRenderEvent { true };
|
||||
|
||||
#if HAS_CRASHPAD
|
||||
crashpad::SimpleStringDictionary* crashpadAnnotations { nullptr };
|
||||
#endif // HAS_CRASHPAD
|
||||
};
|
||||
#endif // hifi_Application_h
|
||||
|
|
Loading…
Reference in a new issue