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
99234c5c
Kaydet (Commit)
99234c5c
authored
Ock 12, 2009
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Minor changes/corrections in markup.
üst
1c62b650
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
17 deletions
+14
-17
logging.rst
Doc/library/logging.rst
+14
-17
No files found.
Doc/library/logging.rst
Dosyayı görüntüle @
99234c5c
...
...
@@ -532,44 +532,41 @@ provided:
#. :class:`FileHandler` instances send error messages to disk files.
.. currentmodule:: logging.handlers
#. :class:`handlers.BaseRotatingHandler` is the base class for handlers that
rotate log files at a certain point. It is not meant to be instantiated
directly. Instead, use :class:`RotatingFileHandler` or
:class:`TimedRotatingFileHandler`.
#. :class:`BaseRotatingHandler` is the base class for handlers that rotate log
files at a certain point. It is not meant to be instantiated directly. Instead,
use :class:`RotatingFileHandler` or :class:`TimedRotatingFileHandler`.
#. :class:`RotatingFileHandler` instances send error messages to disk files,
#. :class:`handlers.RotatingFileHandler` instances send error messages to disk files,
with support for maximum log file sizes and log file rotation.
#. :class:`TimedRotatingFileHandler` instances send error messages to disk files
#. :class:`
handlers.
TimedRotatingFileHandler` instances send error messages to disk files
rotating the log file at certain timed intervals.
#. :class:`SocketHandler` instances send error messages to TCP/IP sockets.
#. :class:`
handlers.
SocketHandler` instances send error messages to TCP/IP sockets.
#. :class:`DatagramHandler` instances send error messages to UDP sockets.
#. :class:`
handlers.
DatagramHandler` instances send error messages to UDP sockets.
#. :class:`SMTPHandler` instances send error messages to a designated email
#. :class:`
handlers.
SMTPHandler` instances send error messages to a designated email
address.
#. :class:`SysLogHandler` instances send error messages to a Unix syslog daemon,
#. :class:`
handlers.
SysLogHandler` instances send error messages to a Unix syslog daemon,
possibly on a remote machine.
#. :class:`NTEventLogHandler` instances send error messages to a Windows
#. :class:`
handlers.
NTEventLogHandler` instances send error messages to a Windows
NT/2000/XP event log.
#. :class:`MemoryHandler` instances send error messages to a buffer in memory,
#. :class:`
handlers.
MemoryHandler` instances send error messages to a buffer in memory,
which is flushed whenever specific criteria are met.
#. :class:`HTTPHandler` instances send error messages to an HTTP server using
#. :class:`
handlers.
HTTPHandler` instances send error messages to an HTTP server using
either ``GET`` or ``POST`` semantics.
#. :class:`WatchedFileHandler` instances watch the file they are logging to. If
#. :class:`
handlers.
WatchedFileHandler` instances watch the file they are logging to. If
the file changes, it is closed and reopened using the file name. This handler
is only useful on Unix-like systems; Windows does not support the underlying
mechanism used.
.. currentmodule:: logging
#. :class:`NullHandler` instances do nothing with error messages. They are used
by library developers who want to use logging, but want to avoid the "No
handlers could be found for logger XXX" message which can be displayed if
...
...
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