1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-09-10 12:03:18 +02:00

misc: remove excess debug log

Change-Id: Ie34eae62d9726378ab1bf5d0233410c561696fc5
This commit is contained in:
Andreas Traczyk 2022-03-24 10:32:00 -04:00
parent adb8c982e0
commit 302f700071

View file

@ -101,8 +101,7 @@ MainApplication::MainApplication(int& argc, char** argv)
: QApplication(argc, argv)
{
const char* qtVersion = qVersion();
qInfo() << "Using Qt runtime version:" << qtVersion << " - "
<< strnlen(qtVersion, sizeof qtVersion);
qInfo() << "Using Qt runtime version:" << qtVersion;
if (strncmp(qtVersion, QT_VERSION_STR, strnlen(qtVersion, sizeof qtVersion)) != 0) {
qFatal(QString("Qt build version mismatch!(%1)").arg(QT_VERSION_STR).toLatin1());
}