From 80fd8cd3382095c5d17d505c8b02a8253a9f2c06 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sat, 8 Jan 2022 21:33:14 +0100 Subject: [PATCH] Log Qt version on startup --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e38e9f454..0258631a1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -168,7 +168,7 @@ int main(int argc, char *argv[]) { #endif // Output the version, so when people attach log output to bug reports they don't have to tell us which version they're using. - qLog(Info) << "Strawberry" << STRAWBERRY_VERSION_DISPLAY; + qLog(Info) << "Strawberry" << STRAWBERRY_VERSION_DISPLAY << "Qt" << QLibraryInfo::version().toString(); qLog(Info) << QString("%1 %2 - (%3 %4) [%5]").arg(QSysInfo::prettyProductName(), QSysInfo::productVersion(), QSysInfo::kernelType(), QSysInfo::kernelVersion(), QSysInfo::currentCpuArchitecture()); // Seed the random number generators.