summary refs log tree commit diff
path: root/src/MatrixClient.cc
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-16 19:31:07 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-16 19:31:07 +0200
commitb5e692bb28e741be4421d3127c507344fde7bf41 (patch)
tree26b7ecde41a42540aa7ea1fc906a0c812a90cb9d /src/MatrixClient.cc
parentRemove submodules from matrix-structs (diff)
downloadnheko-b5e692bb28e741be4421d3127c507344fde7bf41.tar.xz
Improve logging on event parsing failure
Diffstat (limited to 'src/MatrixClient.cc')
-rw-r--r--src/MatrixClient.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/MatrixClient.cc b/src/MatrixClient.cc

index 4634345b..b5dfe514 100644 --- a/src/MatrixClient.cc +++ b/src/MatrixClient.cc
@@ -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(); } }); }