Unverified Commit 5e7570d5 authored by Stan Kladko's avatar Stan Kladko Committed by GitHub

Merge pull request #329 from skalenetwork/bug/SKALE-4284-exception-in-server-worker

SKALE-4284
parents 5fd62090 f98d0de4
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