Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0653fba5
Commit
0653fba5
authored
Jul 06, 2017
by
Vinay Sajip
Committed by
GitHub
Jul 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-30862: Updated Logger.setLevel documentation. (GH-2604)
parent
b4baacee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
Doc/library/logging.rst
Doc/library/logging.rst
+8
-4
No files found.
Doc/library/logging.rst
View file @
0653fba5
...
@@ -94,10 +94,14 @@ is the module's name in the Python package namespace.
...
@@ -94,10 +94,14 @@ is the module's name in the Python package namespace.
.. method:: Logger.setLevel(lvl)
.. method:: Logger.setLevel(lvl)
Sets the threshold for this logger to *lvl*. Logging messages which are less
Sets the threshold for this logger to *lvl*. Logging messages which are less
severe than *lvl* will be ignored. When a logger is created, the level is set to
severe than *lvl* will be ignored; logging messages which have severity *lvl*
:const:`NOTSET` (which causes all messages to be processed when the logger is
or higher will be emitted by whichever handler or handlers service this logger,
the root logger, or delegation to the parent when the logger is a non-root
unless a handler'
s
level
has
been
set
to
a
higher
severity
level
than
*
lvl
*.
logger). Note that the root logger is created with level :const:`WARNING`.
When
a
logger
is
created
,
the
level
is
set
to
:
const
:`
NOTSET
`
(
which
causes
all
messages
to
be
processed
when
the
logger
is
the
root
logger
,
or
delegation
to
the
parent
when
the
logger
is
a
non
-
root
logger
).
Note
that
the
root
logger
is
created
with
level
:
const
:`
WARNING
`.
The
term
'delegation to the parent'
means
that
if
a
logger
has
a
level
of
The
term
'delegation to the parent'
means
that
if
a
logger
has
a
level
of
NOTSET
,
its
chain
of
ancestor
loggers
is
traversed
until
either
an
ancestor
with
NOTSET
,
its
chain
of
ancestor
loggers
is
traversed
until
either
an
ancestor
with
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment