summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/updater.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'installerbuilder/libinstaller/updater.cpp')
-rw-r--r--installerbuilder/libinstaller/updater.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/installerbuilder/libinstaller/updater.cpp b/installerbuilder/libinstaller/updater.cpp
index 2e4b54e97..7b37521da 100644
--- a/installerbuilder/libinstaller/updater.cpp
+++ b/installerbuilder/libinstaller/updater.cpp
@@ -38,6 +38,7 @@
#include "init.h"
#include "packagemanagercore.h"
+#include <QtCore/QDebug>
#include <QtXml/QDomDocument>
#include <iostream>
@@ -62,7 +63,7 @@ bool Updater::checkForUpdates()
content.registerEmbeddedQResources();
if (content.magicmaker() == MagicInstallerMarker) {
- verbose() << tr("Impossible to use an installer to check for updates!") << std::endl;
+ qDebug() << "Impossible to use an installer to check for updates!";
return false;
}
@@ -76,7 +77,7 @@ bool Updater::checkForUpdates()
const QList<QInstaller::Component *> components = core.updaterComponents();
if (components.isEmpty()) {
- verbose() << tr("There are currently no updates available.") << std::endl;
+ qDebug() << "There are currently no updates available.";
return false;
}