File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -81,12 +81,12 @@ is the module's name in the Python package namespace.
81
81
of ancestor loggers.
82
82
83
83
Spelling it out with an example: If the propagate attribute of the logger named
84
- `A.B.C ` evaluates to true, any event logged to `A.B.C ` via a method call such as
85
- `logging.getLogger('A.B.C').error(...) ` will [subject to passing that logger's
84
+ `` A.B.C `` evaluates to true, any event logged to `` A.B.C ` ` via a method call such as
85
+ `` logging.getLogger('A.B.C').error(...) ` ` will [subject to passing that logger's
86
86
level and filter settings] be passed in turn to any handlers attached to loggers
87
- named `A.B `, `A ` and the root logger, after first being passed to any handlers
88
- attached to `A.B.C `. If any logger in the chain `A.B.C `, `A.B `, `A ` has its
89
- `propagate ` attribute set to false, then that is the last logger whose handlers
87
+ named `` A.B `` , `` A ` ` and the root logger, after first being passed to any handlers
88
+ attached to `` A.B.C `` . If any logger in the chain `` A.B.C `` , `` A.B `` , `` A ` ` has its
89
+ `` propagate ` ` attribute set to false, then that is the last logger whose handlers
90
90
are offered the event to handle, and propagation stops at that point.
91
91
92
92
The constructor sets this attribute to ``True ``.
You can’t perform that action at this time.
0 commit comments