File: logging.conf

package info (click to toggle)
linkchecker 5.2-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 3,508 kB
  • ctags: 3,805
  • sloc: python: 22,666; lex: 1,114; yacc: 785; makefile: 276; ansic: 95; sh: 68; sql: 19; awk: 4
file content (58 lines) | stat: -rw-r--r-- 865 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# logging configuration file for webcleaner

[loggers]
keys=root,linkcheck,cmdline,check,cache,gui,thread

[handlers]
keys=

[formatters]
keys=

# this logger is not used by the application, just a catch-all thingy
[logger_root]
level=DEBUG
handlers=
qualname=root

# 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

# debug caches and queues
[logger_cache]
level=INFO
handlers=
propagate=1
qualname=linkcheck.cache

# debug thread locking
[logger_thread]
level=INFO
handlers=
propagate=1
qualname=linkcheck.thread

# debug gui interface
[logger_gui]
level=INFO
handlers=
propagate=1
qualname=linkcheck.gui