rebase fixup

This commit is contained in:
Lion Kortlepel
2022-05-26 21:13:18 +02:00
parent 36547d1e9e
commit 0621c0bf82
5 changed files with 17 additions and 25 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) {