Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
3d639b2c
Kaydet (Commit)
3d639b2c
authored
Eyl 11, 2016
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closed #26533: expanded on behaviour of logging.config.listen().
üst
8d82559c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
logging.config.rst
Doc/library/logging.config.rst
+14
-5
No files found.
Doc/library/logging.config.rst
Dosyayı görüntüle @
3d639b2c
...
...
@@ -126,10 +126,10 @@ in :mod:`logging` itself) and defining handlers which are declared either in
Starts
up
a
socket
server
on
the
specified
port
,
and
listens
for
new
configurations
.
If
no
port
is
specified
,
the
module
's default
:const:`DEFAULT_LOGGING_CONFIG_PORT` is used. Logging configurations will be
sent as a file suitable for processing by :func:`
fileConfig`. Returns a
:
class:`~threading.Thread` instance on which you can call
:meth:`~threading.Thread.start` to start the server, and which you can
:meth:`~threading.Thread.join` when appropriate. To stop the server,
sent as a file suitable for processing by :func:`
dictConfig` or
:
func:`fileConfig`. Returns a :class:`~threading.Thread` instance on which
you can call :meth:`~threading.Thread.start` to start the server, and which
you can
:meth:`~threading.Thread.join` when appropriate. To stop the server,
call :func:`stopListening`.
The ``verify`` argument, if specified, should be a callable which should
...
...
@@ -165,9 +165,18 @@ in :mod:`logging` itself) and defining handlers which are declared either in
``
verify
``
argument
to
:
func
:`
listen
`
to
prevent
unrecognised
configurations
from
being
applied
.
..
versionchanged
::
3.4
.
..
versionchanged
::
3.4
The
``
verify
``
argument
was
added
.
..
note
::
If
you
want
to
send
configurations
to
the
listener
which
don
't
disable existing loggers, you will need to use a JSON format for
the configuration, which will use :func:`dictConfig` for configuration.
This method allows you to specify ``disable_existing_loggers`` as
``False`` in the configuration you send.
.. function:: stopListening()
Stops the listening server which was created with a call to :func:`listen`.
...
...
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