feat(GODT-2446): Attach logs to sentry reports for relevant bridge-gui exceptions.

This commit is contained in:
Xavier Michelon
2023-03-06 13:02:57 +01:00
parent 227bbf1c03
commit 2aa4e7c9da
13 changed files with 211 additions and 45 deletions

View File

@ -52,7 +52,7 @@ void EventStreamReader::run() {
emit finished();
}
catch (Exception const &e) {
reportSentryException(SENTRY_LEVEL_ERROR, "Error during event stream read", "Exception", e.what());
reportSentryException("Error during event stream read", e);
emit error(e.qwhat());
}
}