~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to tools/python/logging/logging-0.4.9.2/test/error.ini

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[loggers]
 
2
keys=root,log02,log03,log04,log05
 
3
 
 
4
[handlers]
 
5
keys=hand01
 
6
 
 
7
[formatters]
 
8
keys=form01
 
9
 
 
10
[logger_root]
 
11
level=WARN
 
12
propagate=1
 
13
channel=
 
14
parent=
 
15
qualname=(root)
 
16
handlers=hand01
 
17
 
 
18
[logger_log02]
 
19
level=ERROR
 
20
propagate=1
 
21
channel=A
 
22
parent=(root)
 
23
qualname=A
 
24
handlers=
 
25
 
 
26
[logger_log03]
 
27
level=ERROR
 
28
propagate=1
 
29
channel=B
 
30
parent=log02
 
31
qualname=A.B
 
32
handlers=
 
33
 
 
34
[logger_log04]
 
35
level=ERROR
 
36
propagate=1
 
37
channel=C
 
38
parent=log03
 
39
qualname=A.B.C
 
40
handlers=
 
41
 
 
42
[logger_log05]
 
43
level=ERROR
 
44
propagate=1
 
45
channel=D
 
46
parent=log04
 
47
qualname=A.B.C.D
 
48
handlers=
 
49
 
 
50
[handler_hand01]
 
51
class=StreamHandler
 
52
level=NOTSET
 
53
formatter=form01
 
54
stream=sys.stderr
 
55
args=(sys.stderr,)
 
56
 
 
57
[formatter_form01]
 
58
format=error.ini %(name)s %(levelname)s %(message)s
 
59
datefmt=
 
60