diff options
Diffstat (limited to 'kdecore/kdebug.cpp')
-rw-r--r-- | kdecore/kdebug.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kdecore/kdebug.cpp b/kdecore/kdebug.cpp index 575f00e37..4c9c7cf14 100644 --- a/kdecore/kdebug.cpp +++ b/kdecore/kdebug.cpp @@ -238,7 +238,8 @@ static void kDebugBackend( unsigned short nLevel, unsigned int nArea, const char break; } - short nOutput = kDebug_data->config ? kDebug_data->config->readNumEntry(key, 2) : 2; + // if no output mode is specified default to no debug output + short nOutput = kDebug_data->config ? kDebug_data->config->readNumEntry(key, 4) : 4; // If the application doesn't have a QApplication object it can't use // a messagebox. |