diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-06 15:56:40 -0600 |
commit | e16866e072f94410321d70daedbcb855ea878cac (patch) | |
tree | ee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /tdecore/kdebugrc | |
parent | a58c20c1a7593631a1b50213c805507ebc16adaf (diff) | |
download | tdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip |
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'tdecore/kdebugrc')
-rw-r--r-- | tdecore/kdebugrc | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/tdecore/kdebugrc b/tdecore/kdebugrc new file mode 100644 index 000000000..58b09ae7a --- /dev/null +++ b/tdecore/kdebugrc @@ -0,0 +1,142 @@ +# This files includes the default behavior for some specific debug areas +# This allows to leave the kdDebug* 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 kdDebug(), kdWarn(), kdError(), kdFatal() +# +# 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.dbg in the current directory is used. +# +# ekzample: +# +# 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=1 +# + +# KAccel debug info off +[125] +InfoOutput=4 + +# KCheckAccel debug info off +[131] +InfoOutput=4 + +# KAction debug info off +[129] +InfoOutput=4 + +# KStartupInfo debug info off +[172] +InfoOutput=4 + +# KLocale debug info off +[173] +InfoOutput=4 + +# KMainWindow debug info off +[200] +InfoOutput=4 + +# KFile debug info off +[250] +InfoOutput=4 + +# KIconloader debug info off +[264] +InfoOutput=4 + +# KSpell debug info off +[750] +InfoOutput=4 + +# KPart's mainwindow info off +[1001] +InfoOutput=4 + +# KPart's factory info off +[1002] +InfoOutput=4 + +# KDesktop icons +[1214] +InfoOutput=4 + +# KHotKeys +[1217] +InfoOutput=4 + +# KMail +[5006] +InfoOutput=4 + +# KitchenSync (Syncing Algorithm) +[5250] +InfoOutput=4 + +# calendarsystem debug info off +[5400] +InfoOutput=4 + +# kabc/vcard +[5710] +InfoOutput=4 + +# korganizer (verbose) +[5855] +InfoOutput=4 + +# korgac (check) +[5891] +InfoOutput=4 + +# kalarmd check +[5901] +InfoOutput=4 + +# kio_http_debug debug info off +[7113] +InfoOutput=4 + +# kbzip2filter's debug info off +[7118] +InfoOutput=4 + +# kio_nntp debug info off +[7114] +InfoOutput=4 + +# KRun debug info off +[7010] +InfoOutput=4 + +# KMimeMagic debug info off +[7018] +InfoOutput=4 + +# KGame debug info off +[11001] +InfoOutput=4 + +# KOStore debug info off +[30002] +InfoOutput=4 + |