Searched refs:fileConfig (Results 1 – 21 of 21) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | logging.config.rst | 80 .. 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/ |
D | logging.config.rst | 81 .. 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/ |
D | config.py | 60 def fileConfig(fname, defaults=None, disable_existing_loggers=True): function 844 fileConfig(file)
|
/external/python/cpython3/Lib/logging/ |
D | config.py | 51 def fileConfig(fname, defaults=None, disable_existing_loggers=True): function 859 fileConfig(file)
|
/external/python/cpython2/Doc/howto/ |
D | logging.rst | 557 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
|
D | logging-cookbook.rst | 276 logging.config.fileConfig('logging.conf')
|
/external/python/cpython3/Doc/howto/ |
D | logging.rst | 582 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`
|
D | logging-cookbook.rst | 284 logging.config.fileConfig('logging.conf')
|
/external/python/cpython2/Lib/test/ |
D | test_logging.py | 738 logging.config.fileConfig(file, **kwargs)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6b1.rst | 307 fileConfig()'s disabling of old loggers is now conditional via an optional
|
D | 2.7.4rc1.rst | 668 Corrected non-enabling of logger following two calls to fileConfig().
|
/external/python/cpython3/Lib/test/ |
D | test_logging.py | 1413 logging.config.fileConfig(file, **kwargs) 1436 logging.config.fileConfig(cp) 1593 logging.config.fileConfig(
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.1rc1.rst | 777 Closed existing logging handlers before reconfiguration via fileConfig and
|
D | 3.5.0a1.rst | 3963 Updated fileConfig and dictConfig to remove inconsistencies. Thanks to Jure
|
D | 3.7.0a1.rst | 1987 Allow `logging.config.fileConfig` to accept kwargs and/or args.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.4.rst | 1084 :func:`~logging.config.fileConfig` now accepts a 1089 :func:`~logging.config.fileConfig`. (Contributed by Vinay Sajip in
|
D | 3.7.rst | 1092 configuration passed to :func:`logging.config.fileConfig`.
|
D | 2.7.rst | 458 :mod:`logging` also supports a :func:`~logging.fileConfig`
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 458 :mod:`logging` also supports a :func:`~logging.fileConfig`
|
/external/python/cpython3/Misc/ |
D | HISTORY | 5179 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/ |
D | HISTORY | 476 - A bug was fixed in logging.config.fileConfig() which caused a crash on 477 shutdown when fileConfig() was called multiple times.
|