Unverified Commit 02a8e9b8 authored by Oleh's avatar Oleh

add more info to db requests

parent da6901ab
...@@ -1061,7 +1061,7 @@ shared_ptr <string> SGXWalletServer::readFromDb(const string &name, const string ...@@ -1061,7 +1061,7 @@ shared_ptr <string> SGXWalletServer::readFromDb(const string &name, const string
auto dataStr = checkDataFromDb(prefix + name); auto dataStr = checkDataFromDb(prefix + name);
if (dataStr == nullptr) { if (dataStr == nullptr) {
throw SGXException(KEY_SHARE_DOES_NOT_EXIST, string(__FUNCTION__) + ":Data with this name does not exist"); throw SGXException(KEY_SHARE_DOES_NOT_EXIST, string(__FUNCTION__) + ":Data with this name does not exist: " + prefix + name);
} }
return dataStr; return dataStr;
......
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