remove "backend response failed to parse as valid json"

This commit is contained in:
Lion Kortlepel 2022-10-13 09:18:38 +02:00
parent 94c0547a35
commit 75ff9f7571
No known key found for this signature in database
GPG Key ID: 4322FF2B4C71259B
2 changed files with 2 additions and 1 deletions

View File

@ -19,6 +19,7 @@
- FIXED bug which caused hot-reload not to report syntax errors
- FIXED missing error messages on some event handler calls
- FIXED vehicles not deleting for all players if an edit was cancelled by Lua
- REMOVED "Backend response failed to parse as valid json" message
# v3.0.2

View File

@ -62,7 +62,7 @@ void THeartbeatThread::operator()() {
Doc.Parse(T.data(), T.size());
if (Doc.HasParseError() || !Doc.IsObject()) {
if (!Application::Settings.Private) {
beammp_error("Backend response failed to parse as valid json");
beammp_trace("Backend response failed to parse as valid json");
beammp_trace("Response was: `" + T + "`");
}
Sentry.SetContext("JSON Response", { { "reponse", T } });