kdelibs/kdecore/kdebugrc
Ivailo Monev 713c9394d7 kdecore: drop message box feature of KDebug
tho it can be fixed (by not using queued up message boxes) I am not into
supporting such feature

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2024-04-20 19:40:13 +03:00

63 lines
1.3 KiB
Text

# This files includes the default behavior for some specific debug areas.
#
# There are four levels of output: Info, Warn, Error and Fatal corresponding to
# kDebug(), kWarning(), kError(), kFatal()
#
# For every of them you can define a target by *Output=n using the following
# numbers:
#
# 0 = file
# 1 = shell (stderr)
# 2 = syslog
# 3 = off
#
# For file output you can give a filename by *Filename=<file> otherwise
# kdebug.log in the current directory is used.
#
# example:
#
# For the debug area 100 you want output of debug messages to a file
# /var/log/dbg.log and error messages to the system log. Additionally the
# program should abort on fatal errors.
#
# [100]
# InfoOutput=0
# InfoFilename=/var/log/dbg.log
# ErrorOutput=1
# AbortFatal=true
#
# kcrash warning, error and fatal to syslog
[1410]
InfoOutput=3
WarnOutput=2
ErrorOutput=2
FatalOutput=2
# KHTTP warning, error and fatal to syslog
[7050]
InfoOutput=3
WarnOutput=2
ErrorOutput=2
FatalOutput=2
# kpasswdstore warning, error and fatal to syslog
[51004]
InfoOutput=3
WarnOutput=2
ErrorOutput=2
FatalOutput=2
# kpowermanager warning, error and fatal to syslog
[51005]
InfoOutput=3
WarnOutput=2
ErrorOutput=2
FatalOutput=2
# kdnssd warning, error and fatal to syslog
[51006]
InfoOutput=4
WarnOutput=3
ErrorOutput=3
FatalOutput=3