Revert "Comment out debug logging"

This reverts commit c2306cb556.
This commit is contained in:
Jonah Brüchert 2020-05-28 15:58:18 +02:00
parent c2306cb556
commit 881f7c7a96
No known key found for this signature in database
GPG key ID: A81E075ABEC80A7E

View file

@ -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;