log *which* binary failed to start

Users shouldn't have to od libraries.
CCBUG: 353154
REVIEW: 125464
This commit is contained in:
Thomas Lübking 2015-09-30 16:24:25 +02:00
parent 7365069ba0
commit 75b08e1ee7

View file

@ -1002,7 +1002,7 @@ void RuleBook::edit(AbstractClient* c, bool whole_app)
connect(p, static_cast<void (QProcess::*)(QProcess::ProcessError)>(&QProcess::error), this,
[p] (QProcess::ProcessError e) {
if (e == QProcess::FailedToStart) {
qCDebug(KWIN_CORE) << "Failed to start kwin_rules_dialog";
qCDebug(KWIN_CORE) << "Failed to start" << p->program();
}
}
);