Skip to content

Commit

Permalink
Fixed compilation issue under 5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Dec 4, 2024
1 parent 24472d0 commit 5439106
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions core/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,13 +289,13 @@ static void debugMessageOutput(QtMsgType type, const QMessageLogContext &context
if ( logFile.open(QIODevice::WriteOnly | QIODevice::Text) )
{
logStream.setDevice(&logFile);
logStream << "App: " << QCoreApplication::applicationVersion() << Qt::endl
logStream << "App: " << QCoreApplication::applicationVersion() << "\n"
#ifdef QLOG_FLATPAK
<< "Flatpak" << Qt::endl
<< "Flatpak" << "\n"
#endif
<< "QT: " << qVersion() << Qt::endl
<< "OS: " << QString("%1 %2 (%3)").arg(QSysInfo::prettyProductName(), QSysInfo::currentCpuArchitecture(), QGuiApplication::platformName() ) << Qt::endl
<< "SSL: " << QSslSocket::sslLibraryVersionString() << Qt::endl << Qt::endl;
<< "QT: " << qVersion() << "\n"
<< "OS: " << QString("%1 %2 (%3)").arg(QSysInfo::prettyProductName(), QSysInfo::currentCpuArchitecture(), QGuiApplication::platformName() ) << "\n"
<< "SSL: " << QSslSocket::sslLibraryVersionString() << "\n\n";
}
else
{
Expand Down

0 comments on commit 5439106

Please sign in to comment.