diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-02-04 16:25:41 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-02-04 16:25:41 (GMT) |
commit | 8bf70f74cf154375373566fcbe67ba3d63955ef5 (patch) | |
tree | be7752677551e17a9f11939128607a8529fa943f | |
parent | d16e01cf75a2663c74c2e36beda6397546a8ae52 (diff) | |
download | cpython-8bf70f74cf154375373566fcbe67ba3d63955ef5.zip cpython-8bf70f74cf154375373566fcbe67ba3d63955ef5.tar.gz cpython-8bf70f74cf154375373566fcbe67ba3d63955ef5.tar.bz2 |
Issue #20509: Added cross-reference in documentation.
-rw-r--r-- | Doc/library/logging.config.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/logging.config.rst b/Doc/library/logging.config.rst index 2dc82ac..c83b026 100644 --- a/Doc/library/logging.config.rst +++ b/Doc/library/logging.config.rst @@ -81,8 +81,9 @@ in :mod:`logging` itself) and defining handlers which are declared either in .. 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 + named *fname*. The format of the file should be as described in + :ref:`logging-config-fileformat`. This function can be called several times + from an application, allowing 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). |