diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2021-12-06 23:43:46 -0600 |
|---|---|---|
| committer | Mikaƫl Capelle <capelle.mikael@gmail.com> | 2022-04-19 15:17:23 +0200 |
| commit | abe3f6b191340176a7f880ffa9f071a930e47ee4 (patch) | |
| tree | 95e33eea9ef7488f02a6c8646e989a379bffe771 /src/moapplication.cpp | |
| parent | fb4cd4375c0a547129b454c376a32d752bc70422 (diff) | |
TLS debugging
Diffstat (limited to 'src/moapplication.cpp')
| -rw-r--r-- | src/moapplication.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/moapplication.cpp b/src/moapplication.cpp index 744b6b63..85e02122 100644 --- a/src/moapplication.cpp +++ b/src/moapplication.cpp @@ -45,6 +45,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QPainter>
#include <QStyleOption>
#include <QDebug>
+#include <QSSLSocket>
// see addDllsToPath() below
#pragma comment(linker, "/manifestDependency:\"" \
@@ -256,6 +257,9 @@ int MOApplication::setup(MOMultiProcess& multiProcess, bool forceSelect) sanity::checkIncompatibleModule(m);
}));
+ auto sslBuildVersion = QSslSocket::sslLibraryBuildVersionString();
+ auto sslVersion = QSslSocket::sslLibraryVersionString();
+ log::debug("SSL Build Version: {}, SSL Runtime Version {}", sslBuildVersion, sslVersion);
// nexus interface
tt.start("MOApplication::doOneRun() NexusInterface");
|
