let's try vcpkg

This commit is contained in:
Lion Kortlepel
2022-04-28 16:26:30 +02:00
parent 3b2016d09f
commit 8d7505956d
7 changed files with 91 additions and 89 deletions

View File

@@ -72,7 +72,7 @@ void TSentry::Log(SentryLevel level, const std::string& logger, const std::strin
SetContext("threads", { { "thread-name", ThreadName(true) } });
auto Msg = sentry_value_new_message_event(sentry_level_t(level), logger.c_str(), text.c_str());
sentry_capture_event(Msg);
sentry_remove_transaction();
sentry_set_transaction(nullptr);
}
void TSentry::LogError(const std::string& text, const std::string& file, const std::string& line) {