Home
last modified time | relevance | path

Searched refs:fileConfig (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Doc/library/
Dlogging.config.rst80 .. function:: fileConfig(fname, defaults=None, disable_existing_loggers=True)
122 of the runtime environment) before being passed to ``fileConfig``.
130 :func:`fileConfig`. Returns a :class:`~threading.Thread` instance on which
306 existing :func:`fileConfig` API.
313 :func:`fileConfig`. If absent, this parameter defaults to ``True``.
623 The configuration file format understood by :func:`fileConfig` is based on
638 The :func:`fileConfig` API is older than the :func:`dictConfig` API and does
641 filtering of messages beyond simple integer levels, using :func:`fileConfig`.
/external/python/cpython2/Doc/library/
Dlogging.config.rst81 .. function:: fileConfig(fname, defaults=None, disable_existing_loggers=True)
111 sent as a file suitable for processing by :func:`fileConfig`. Returns a
263 existing :func:`fileConfig` API.
270 :func:`fileConfig`. If absent, this parameter defaults to ``True``.
576 The configuration file format understood by :func:`fileConfig` is based on
591 The :func:`fileConfig` API is older than the :func:`dictConfig` API and does
594 filtering of messages beyond simple integer levels, using :func:`fileConfig`.
/external/python/cpython2/Lib/logging/
Dconfig.py60 def fileConfig(fname, defaults=None, disable_existing_loggers=True): function
844 fileConfig(file)
/external/python/cpython3/Lib/logging/
Dconfig.py51 def fileConfig(fname, defaults=None, disable_existing_loggers=True): function
859 fileConfig(file)
/external/python/cpython2/Doc/howto/
Dlogging.rst557 2. Creating a logging config file and reading it using the :func:`fileConfig`
610 logging.config.fileConfig('logging.conf')
668 .. warning:: The :func:`fileConfig` function takes a default parameter,
671 will cause any loggers existing before the :func:`fileConfig` call to
Dlogging-cookbook.rst276 logging.config.fileConfig('logging.conf')
/external/python/cpython3/Doc/howto/
Dlogging.rst582 2. Creating a logging config file and reading it using the :func:`fileConfig`
635 logging.config.fileConfig('logging.conf')
695 .. warning:: The :func:`fileConfig` function takes a default parameter,
698 will cause any non-root loggers existing before the :func:`fileConfig`
Dlogging-cookbook.rst284 logging.config.fileConfig('logging.conf')
/external/python/cpython2/Lib/test/
Dtest_logging.py738 logging.config.fileConfig(file, **kwargs)
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst307 fileConfig()'s disabling of old loggers is now conditional via an optional
D2.7.4rc1.rst668 Corrected non-enabling of logger following two calls to fileConfig().
/external/python/cpython3/Lib/test/
Dtest_logging.py1413 logging.config.fileConfig(file, **kwargs)
1436 logging.config.fileConfig(cp)
1593 logging.config.fileConfig(
/external/python/cpython3/Misc/NEWS.d/
D3.7.1rc1.rst777 Closed existing logging handlers before reconfiguration via fileConfig and
D3.5.0a1.rst3963 Updated fileConfig and dictConfig to remove inconsistencies. Thanks to Jure
D3.7.0a1.rst1987 Allow `logging.config.fileConfig` to accept kwargs and/or args.
/external/python/cpython3/Doc/whatsnew/
D3.4.rst1084 :func:`~logging.config.fileConfig` now accepts a
1089 :func:`~logging.config.fileConfig`. (Contributed by Vinay Sajip in
D3.7.rst1092 configuration passed to :func:`logging.config.fileConfig`.
D2.7.rst458 :mod:`logging` also supports a :func:`~logging.fileConfig`
/external/python/cpython2/Doc/whatsnew/
D2.7.rst458 :mod:`logging` also supports a :func:`~logging.fileConfig`
/external/python/cpython3/Misc/
DHISTORY5179 fileConfig().
5776 - Issue #16110: logging.fileConfig now accepts a pre-initialised ConfigParser
17860 - A bug was fixed in logging.config.fileConfig() which caused a crash on
17861 shutdown when fileConfig() was called multiple times.
/external/python/cpython2/Misc/
DHISTORY476 - A bug was fixed in logging.config.fileConfig() which caused a crash on
477 shutdown when fileConfig() was called multiple times.