pitrou commented on issue #15054:
URL: https://github.com/apache/arrow/issues/15054#issuecomment-1397236632
Judging by the reconstructed stack trace (thanks @lidavidm !), this has
nothing to do with OpenSSL but with calling a logging method:
```c++
CurlHandleContainer::~CurlHandleContainer()
{
AWS_LOGSTREAM_INFO(CURL_HANDLE_CONTAINER_TAG, "Cleaning up
CurlHandleContainer.");
for (CURL* handle : m_handleContainer.ShutdownAndWait(m_poolSize))
{
AWS_LOGSTREAM_DEBUG(CURL_HANDLE_CONTAINER_TAG, "Cleaning up " <<
handle);
curl_easy_cleanup(handle);
}
}
```
The definition of `AWS_LOGSTREAM_INFO` is:
```c++
#define AWS_LOGSTREAM_INFO(tag, streamExpression) \
{ \
Aws::Utils::Logging::LogSystemInterface* logSystem =
Aws::Utils::Logging::GetLogSystem(); \
if ( logSystem && logSystem->GetLogLevel() >=
Aws::Utils::Logging::LogLevel::Info ) \
{ \
Aws::OStringStream logStream; \
logStream << streamExpression; \
logSystem->LogStream( Aws::Utils::Logging::LogLevel::Info,
tag, logStream ); \
} \
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]