SKALE-2977 remove logs

parent dec8f187
...@@ -174,11 +174,9 @@ vector <string> ecdsaSignHash(const std::string& encryptedKeyHex, const char *ha ...@@ -174,11 +174,9 @@ vector <string> ecdsaSignHash(const std::string& encryptedKeyHex, const char *ha
shared_ptr<SGXException> exception = NULL; shared_ptr<SGXException> exception = NULL;
spdlog::debug("BEFORE HEX2CARRAY");
if (!hex2carray(encryptedKeyHex.c_str(), &decLen, encryptedKey.data())) { if (!hex2carray(encryptedKeyHex.c_str(), &decLen, encryptedKey.data())) {
throw SGXException(INVALID_HEX, "Invalid encryptedKeyHex"); throw SGXException(INVALID_HEX, "Invalid encryptedKeyHex");
} }
spdlog::debug("AFTER HEX2CARRAY");
status = trustedEcdsaSignAES(eid, &errStatus, status = trustedEcdsaSignAES(eid, &errStatus,
errMsg.data(), encryptedKey.data(), decLen, (unsigned char *) hashHex, errMsg.data(), encryptedKey.data(), decLen, (unsigned char *) hashHex,
......
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