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
0513275b
Commit
0513275b
authored
Apr 19, 2011
by
Vinay Sajip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated documentation on fileConfig().
parent
bafc6a9f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
7 deletions
+21
-7
Doc/library/logging.config.rst
Doc/library/logging.config.rst
+21
-7
No files found.
Doc/library/logging.config.rst
View file @
0513275b
...
...
@@ -74,15 +74,29 @@ in :mod:`logging` itself) and defining handlers which are declared either in
..
versionadded
::
2.7
..
function
::
fileConfig
(
fname
[,
defaults
]
)
..
function
::
fileConfig
(
fname
,
defaults
=
None
,
disable_existing_loggers
=
True
)
Reads
the
logging
configuration
from
a
:
mod
:`
configparser
`\-
format
file
named
*
fname
*.
This
function
can
be
called
several
times
from
an
application
,
allowing
an
end
user
to
select
from
various
pre
-
canned
Reads
the
logging
configuration
from
a
:
mod
:`
configparser
`\-
format
file
named
*
fname
*.
This
function
can
be
called
several
times
from
an
a
pplication
,
a
llowing
an
end
user
to
select
from
various
pre
-
canned
configurations
(
if
the
developer
provides
a
mechanism
to
present
the
choices
and
load
the
chosen
configuration
).
Defaults
to
be
passed
to
the
ConfigParser
can
be
specified
in
the
*
defaults
*
argument
.
and
load
the
chosen
configuration
).
:
param
defaults
:
Defaults
to
be
passed
to
the
ConfigParser
can
be
specified
in
this
argument
.
:
param
disable_existing_loggers
:
If
specified
as
``
False
``,
loggers
which
exist
when
this
call
is
made
are
left
alone
.
The
default
is
``
True
``
because
this
enables
old
behaviour
in
a
backward
-
compatible
way
.
This
behaviour
is
to
disable
any
existing
loggers
unless
they
or
their
ancestors
are
explicitly
named
in
the
logging
configuration
.
..
versionchanged
::
2.6
The
``
disable_existing_loggers
``
keyword
argument
was
added
.
Previously
,
existing
loggers
were
*
always
*
disabled
.
..
function
::
listen
(
port
=
DEFAULT_LOGGING_CONFIG_PORT
)
...
...
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