From d80ccaf94ce31d24834bf3051fb9438adf23e4fd Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 4 Dec 2014 09:01:44 -0600 Subject: Fix printing of debug information on KDED crash --- kded/kded.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'kded') diff --git a/kded/kded.cpp b/kded/kded.cpp index c7a0aa221..e1b3b6b33 100644 --- a/kded/kded.cpp +++ b/kded/kded.cpp @@ -441,13 +441,17 @@ void Kded::updateResourceList() void Kded::crashHandler(int) { DCOPClient::emergencyClose(); - if (_self) // Don't restart if we were closing down - system("kded"); -tqWarning("Last DCOP call before KDED crash was from application '%s'\n" + if (_self) { // Don't restart if we were closing down + tqWarning("Last DCOP call before KDED crash was from application '%s'\n" "to object '%s', function '%s'.", DCOPClient::postMortemSender(), DCOPClient::postMortemObject(), DCOPClient::postMortemFunction()); + tqWarning("Restarting KDED...\n"); + if (system("kded") < 0) { + tqWarning("Unable to restart KDED!\n"); + } + } } void Kded::installCrashHandler() -- cgit v1.2.3