mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-20 04:11:52 +00:00
added cache logger
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1635 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
60dc606510
commit
24ec105170
1 changed files with 12 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
|||
# logging configuration file for webcleaner
|
||||
|
||||
[loggers]
|
||||
keys=root,linkcheck,cmdline,check,gui
|
||||
keys=root,linkcheck,cmdline,check,cache,gui
|
||||
|
||||
[handlers]
|
||||
keys=
|
||||
|
|
@ -15,27 +15,35 @@ level=DEBUG
|
|||
handlers=
|
||||
qualname=root
|
||||
|
||||
# application logger
|
||||
# global application logger
|
||||
[logger_linkcheck]
|
||||
level=INFO
|
||||
handlers=
|
||||
propagate=0
|
||||
qualname=linkcheck
|
||||
|
||||
# debug command line processing
|
||||
[logger_cmdline]
|
||||
level=INFO
|
||||
handlers=
|
||||
propagate=1
|
||||
qualname=linkcheck.cmdline
|
||||
|
||||
# debug checking methods
|
||||
[logger_check]
|
||||
level=INFO
|
||||
handlers=
|
||||
propagate=1
|
||||
qualname=linkcheck.check
|
||||
|
||||
# logger for the proxy mechanism, able to debug parsed connection
|
||||
# data from clients and servers
|
||||
# debug caches and queues
|
||||
[logger_cache]
|
||||
level=DEBUG
|
||||
handlers=
|
||||
propagate=1
|
||||
qualname=linkcheck.cache
|
||||
|
||||
# debug gui interface
|
||||
[logger_gui]
|
||||
level=INFO
|
||||
handlers=
|
||||
|
|
|
|||
Loading…
Reference in a new issue