Unverified Commit 4ac32306 authored by kladko's avatar kladko

SKALE-4284

parent 299f7382
1.76.0
\ No newline at end of file
1.77.0
\ No newline at end of file
......@@ -208,6 +208,7 @@ void ZMQServer::doOneServerLoop() {
}
result["errorMessage"] = string(e.what());
spdlog::error("Exception in zmq server :{}", e.what());
spdlog::error("ID:" + string((char*) identity.data(), identity.size()));
spdlog::error("Client request :" + stringToParse);
} catch (...) {
......@@ -216,6 +217,7 @@ void ZMQServer::doOneServerLoop() {
}
spdlog::error("Error in zmq server ");
result["errorMessage"] = "Error in zmq server ";
spdlog::error("ID:" + string((char*) identity.data(), identity.size()));
spdlog::error("Client request :" + stringToParse);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment