Skip to content
Snippets Groups Projects
Commit b5e692bb authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Improve logging on event parsing failure

parent 7e24a468
No related branches found
No related tags found
No related merge requests found
Subproject commit d7227d213c253f784b3fd470e0ac98165d2de568
Subproject commit 6bfd6362c57e687904ed1fbb622f4bdaae038cc3
......@@ -238,7 +238,7 @@ MatrixClient::sync() noexcept
mtx::responses::Sync response = nlohmann::json::parse(reply->readAll());
emit syncCompleted(response);
} catch (std::exception &e) {
qWarning() << "Sync malformed response" << e.what();
qWarning() << "Sync malformed response: " << e.what();
}
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment