Mobile: print out Qt information on the system we are running on

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-09-18 13:13:00 -07:00
parent 05f7ed0e1d
commit e68d287c91

View file

@ -204,6 +204,7 @@ QMLManager::QMLManager() : m_locationServiceEnabled(false),
int git_maj, git_min, git_rev;
git_libgit2_version(&git_maj, &git_min, &git_rev);
appendTextToLog(QStringLiteral("built with libgit2 %1.%2.%3").arg(git_maj).arg(git_min).arg(git_rev));
appendTextToLog(QStringLiteral("Running on %1").arg(QSysInfo::prettyProductName()));
setStartPageText(tr("Starting..."));
LOG_STP("qmlmgr start page");