kdelibs/kdecore/kdebugrc

62 lines
1.4 KiB
Text
Raw Normal View History

2014-11-13 01:04:59 +02:00
# 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()
2014-11-13 01:04:59 +02:00
#
# 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.
2014-11-13 01:04:59 +02:00
#
# 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
2014-11-13 01:04:59 +02:00
#
# KHTTP warning, error and fatal to syslog
[51007]
2014-11-13 01:04:59 +02:00
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