kdelibs/kdecore/kdebugrc
Ivailo Monev 27caa4c394 kdecore: update reference to KHTTP debug area
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-12-25 16:46:15 +02:00

61 lines
1.4 KiB
Text

# This files includes the default behavior for some specific debug areas
# This allows to leave the kDebug* calls in the code, but still have them
# disabled for most users.
#
# This file will be installed as $KDEDIR/share/config/kdebugrc
#
# 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 = message box
# 2 = shell (stderr)
# 3 = syslog
# 4 = 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 as message boxes.
# Additionally the program should abort on fatal errors.
#
# [100]
# InfoOutput=0
# InfoFilename=/var/log/dbg.log
# ErrorOutput=1
# AbortFatal=true
#
# KHTTP warning, error and fatal to syslog
[7050]
InfoOutput=4
WarnOutput=3
ErrorOutput=3
FatalOutput=3
# kpasswdstore warning, error and fatal to syslog
[51004]
InfoOutput=4
WarnOutput=3
ErrorOutput=3
FatalOutput=3
# kpowermanager warning, error and fatal to syslog
[51005]
InfoOutput=4
WarnOutput=3
ErrorOutput=3
FatalOutput=3
# kdnssd warning, error and fatal to syslog
[51006]
InfoOutput=4
WarnOutput=3
ErrorOutput=3
FatalOutput=3