File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,17 +28,17 @@ Other reasons why logging is better than ``print``:
2828- Events logged in included modules are automatically accessible via the
2929 root logger
3030 to your application's logging stream, unless you filter them out.
31- - Logging can be selectively silenced or disabled by using the method
32- :meth: `logging.Logger.setLevel ` or setting the attribute
31+ - Logging can be selectively silenced by using the method
32+ :meth: `logging.Logger.setLevel ` or disabled by setting the attribute
3333 :attr: `logging.Logger.disabled ` to ``True ``.
3434
3535
3636Logging in a Library
3737--------------------
3838
3939Notes for `configuring logging for a library `_ are in the
40- `basic logging tutorial `_. Because the *user *, not the library, should
41- dictate what happens when a logging event occurs, One admonition bears
40+ `logging tutorial `_. Because the *user *, not the library, should
41+ dictate what happens when a logging event occurs, one admonition bears
4242repeating:
4343
4444.. note ::
@@ -86,6 +86,7 @@ There are at least three ways to configure a logger:
8686- using a dictionary
8787- using code
8888
89+
8990Example Configuration via an INI File
9091~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9192
You can’t perform that action at this time.
0 commit comments