From 75b08e1ee704c0467562e49bb47d47b2aaa6703b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Wed, 30 Sep 2015 16:24:25 +0200 Subject: [PATCH] log *which* binary failed to start Users shouldn't have to od libraries. CCBUG: 353154 REVIEW: 125464 --- rules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.cpp b/rules.cpp index bae2981c48..7ab6fa724d 100644 --- a/rules.cpp +++ b/rules.cpp @@ -1002,7 +1002,7 @@ void RuleBook::edit(AbstractClient* c, bool whole_app) connect(p, static_cast(&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(); } } );