File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 22
22
* Adafruit CircuitPython firmware for the supported boards:
23
23
https://github.com/adafruit/circuitpython/releases
24
24
25
+ .. note::
26
+
27
+ This module has a few key differences compared to its CPython counterpart, notably
28
+ that loggers can only be assigned one handler at a time. Calling ``addHander()``
29
+ replaces the currently stored handler for that logger. Additionally, the default
30
+ formatting for handlers is different.
31
+
25
32
Attributes
26
33
----------
27
34
LEVELS : list
46
53
The CRITICAL logging level, which is the highest (most severe) level for
47
54
unrecoverable errors that have caused the code to halt and exit.
48
55
49
- .. note::
50
-
51
- This module has a few key differences compared to its CPython counterpart, notably
52
- that loggers can only be assigned one handler at a time. Calling ``addHander()``
53
- replaces the currently stored handler for that logger. Additionally, the default
54
- formatting for handlers is different.
55
-
56
56
"""
57
57
58
58
# pylint: disable=invalid-name,undefined-variable
You can’t perform that action at this time.
0 commit comments