From 881f7c7a96d7e2204cf176b9dbede61b4fed73c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Thu, 28 May 2020 15:58:18 +0200 Subject: [PATCH] Revert "Comment out debug logging" This reverts commit c2306cb5563617789825be2466655ad0ce6f7fce. --- containments/homescreen/applicationlistmodel.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/containments/homescreen/applicationlistmodel.cpp b/containments/homescreen/applicationlistmodel.cpp index e4b8eaab..5f2bdfcf 100644 --- a/containments/homescreen/applicationlistmodel.cpp +++ b/containments/homescreen/applicationlistmodel.cpp @@ -56,13 +56,14 @@ ApplicationListModel::ApplicationListModel(HomeScreen *parent) loadSettings(); // Debug - /*connect(this, &ApplicationListModel::applicationStarted, this, [=](const QString &name, const QString &icon) { + connect(this, &ApplicationListModel::applicationStarted, this, [=](const QString &name, const QString &icon) { qDebug() << "Opening startup feedback for" << name << icon; }); connect(this, &ApplicationListModel::applicationExited, this, []() { qDebug() << "Removing startup feedback"; - });*/ + }); + } ApplicationListModel::~ApplicationListModel() = default;