print openssl info

This commit is contained in:
Martin Rotter 2021-04-17 20:16:37 +02:00 committed by Martin Rotter
parent 2c1bc5a937
commit a7088d9abb
2 changed files with 9 additions and 1 deletions

@ -1 +1 @@
Subproject commit 47f4125753452eff8800dbd6600c5a05540b15d9
Subproject commit 9c10723bfbaf6cb85107d6ee16e0324e9e487749

View File

@ -80,6 +80,14 @@ Application::Application(const QString& id, int& argc, char** argv)
m_webFactory->urlIinterceptor()->load();
m_webFactory->adBlock()->load(true);
#endif
qDebugNN << LOGSEC_CORE
<< "OpenSSL version:"
<< QUOTE_W_SPACE_DOT(QSslSocket::sslLibraryVersionString());
qDebugNN << LOGSEC_CORE
<< "OpenSSL supported:"
<< QUOTE_W_SPACE_DOT(QSslSocket::supportsSsl());
}
Application::~Application() {