We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74e96bd commit 7d4b493Copy full SHA for 7d4b493
src/crypto/crypto_util.cc
@@ -227,6 +227,7 @@ void CryptoErrorStore::Capture() {
227
while (const uint32_t err = ERR_get_error()) {
228
char buf[256];
229
ERR_error_string_n(err, buf, sizeof(buf));
230
+ printf("<<<<<<< %s <<<<<\n", buf);
231
errors_.emplace_back(buf);
232
}
233
std::reverse(std::begin(errors_), std::end(errors_));
0 commit comments