From 22ff9504a705dd1b00ae3755024c8bb60863c713 Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 20 Oct 2016 14:47:45 +0200 Subject: [PATCH] Changed: Log version of installed Installer --HG-- branch : develop --- code/ryzom/tools/client/ryzom_installer/src/configfile.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp index 6dadeb5cd..bf3c64cb2 100644 --- a/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp +++ b/code/ryzom/tools/client/ryzom_installer/src/configfile.cpp @@ -744,6 +744,9 @@ int CConfigFile::compareInstallersVersion() const if (!QFile::exists(installerDst)) return 1; QString installedVersion = getVersionFromExecutable(installerDst); + + nlinfo("%s version is %s", Q2C(installerDst), Q2C(installedVersion)); + QString newVersion = QApplication::applicationVersion(); QVersionNumber installedVer = QVersionNumber::fromString(installedVersion);