diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-12-04 09:01:44 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-12-04 09:01:44 -0600 |
commit | d80ccaf94ce31d24834bf3051fb9438adf23e4fd (patch) | |
tree | dfb50b59b94e8510618a3843e45fa015babf0abe /kded/kded.cpp | |
parent | bbd5f4476c3feda235f90b458ad25d0511f53627 (diff) | |
download | tdelibs-d80ccaf94ce31d24834bf3051fb9438adf23e4fd.tar.gz tdelibs-d80ccaf94ce31d24834bf3051fb9438adf23e4fd.zip |
Fix printing of debug information on KDED crash
Diffstat (limited to 'kded/kded.cpp')
-rw-r--r-- | kded/kded.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
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() |