File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 31
31
32
32
Attributes
33
33
----------
34
- LEVELS : list
34
+ LEVELS: list
35
35
A list of tuples representing the valid logging levels used by
36
36
this module. Each tuple contains exactly two elements: one int and one
37
37
str. The int in each tuple represents the relative severity of that
38
38
level (00 to 50). The str in each tuple is the string representation of
39
39
that logging level ("NOTSET" to "CRITICAL"; see below).
40
- NOTSET : int
41
- The NOTSET logging level, which is a dummy logging level that can be
42
- used to indicate that a `Logger` should not print any logging messages,
43
- regardless of how severe those messages might be (including CRITICAL) .
44
- DEBUG : int
40
+ NOTSET: int
41
+ The NOTSET logging level, which is the default logging level that can be
42
+ used to indicate that a `Logger` should process any logging messages,
43
+ regardless of how severe those messages are .
44
+ DEBUG: int
45
45
The DEBUG logging level, which is the lowest (least severe) real level.
46
- INFO : int
46
+ INFO: int
47
47
The INFO logging level for informative/informational messages.
48
- WARNING : int
48
+ WARNING: int
49
49
The WARNING logging level for warnings that should be addressed/fixed.
50
- ERROR : int
50
+ ERROR: int
51
51
The ERROR logging level for Python exceptions that occur during runtime.
52
- CRITICAL : int
52
+ CRITICAL: int
53
53
The CRITICAL logging level, which is the highest (most severe) level for
54
54
unrecoverable errors that have caused the code to halt and exit.
55
55
You can’t perform that action at this time.
0 commit comments