s/LogInfo/LogDebug @ 'signed/verify encrypted introset'

pull/1084/head
Stephen Shelton 4 years ago
parent 2cade16c0e
commit 37e4f26be1
No known key found for this signature in database
GPG Key ID: EE4BADACCE8B631C

@ -118,7 +118,7 @@ namespace llarp
buf.cur = buf.base;
if(not CryptoManager::instance()->sign(sig, k, buf))
return false;
LogInfo("signed encrypted introset: ", *this);
LogDebug("signed encrypted introset: ", *this);
return true;
}
@ -133,7 +133,7 @@ namespace llarp
copy.sig.Zero();
if(not copy.BEncode(&buf))
return false;
LogInfo("verify encrypted introset: ", copy, " sig = ", sig);
LogDebug("verify encrypted introset: ", copy, " sig = ", sig);
buf.sz = buf.cur - buf.base;
buf.cur = buf.base;
return CryptoManager::instance()->verify(derivedSigningKey, buf, sig);

Loading…
Cancel
Save