diff --git a/lib/remote/jsonrpcconnection.cpp b/lib/remote/jsonrpcconnection.cpp index ced0cc3ce..10376c888 100644 --- a/lib/remote/jsonrpcconnection.cpp +++ b/lib/remote/jsonrpcconnection.cpp @@ -258,6 +258,9 @@ void JsonRpcConnection::MessageHandler(const String& jsonString) { Dictionary::Ptr message = JsonRpc::DecodeMessage(jsonString); + Log(LogCritical, "MESSAGE-HANDLER") + << "Got message from endpoint '" << m_Endpoint->GetName() << "': " << jsonString; + if (m_Endpoint && message->Contains("ts")) { double ts = message->Get("ts");