aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/src/applicationlauncher.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'homescreen/src/applicationlauncher.cpp')
-rw-r--r--homescreen/src/applicationlauncher.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/homescreen/src/applicationlauncher.cpp b/homescreen/src/applicationlauncher.cpp
index 411fb03..7e1cda1 100644
--- a/homescreen/src/applicationlauncher.cpp
+++ b/homescreen/src/applicationlauncher.cpp
@@ -20,7 +20,7 @@
#include "afm_user_daemon_proxy.h"
-#include <QtCore/QDebug>
+#include "hmi-debug.h"
extern org::AGL::afm::user *afm_user_daemon_proxy;
@@ -32,10 +32,10 @@ ApplicationLauncher::ApplicationLauncher(QObject *parent)
int ApplicationLauncher::launch(const QString &application)
{
int result = -1;
- qDebug() << "ApplicationLauncher launch" << application;
+ HMI_DEBUG("HomeScreen","ApplicationLauncher launch %s.", application.toStdString().c_str());
result = afm_user_daemon_proxy->start(application).value().toInt();
- qDebug() << "ApplicationLauncher pid:" << result;
+ HMI_DEBUG("HomeScreen","ApplicationLauncher pid: %d.", result);
if (result > 1) {
setCurrent(application);