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
2353e355
Kaydet (Commit)
2353e355
authored
Haz 27, 2011
tarafından
Vinay Sajip
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #12419: Added ident to SysLogHandler.
üst
345a5d73
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
logging.handlers.rst
Doc/library/logging.handlers.rst
+9
-0
handlers.py
Lib/logging/handlers.py
+3
-0
test_logging.py
Lib/test/test_logging.py
+5
-0
No files found.
Doc/library/logging.handlers.rst
Dosyayı görüntüle @
2353e355
...
@@ -452,6 +452,15 @@ supports sending logging messages to a remote or local Unix syslog.
...
@@ -452,6 +452,15 @@ supports sending logging messages to a remote or local Unix syslog.
behaviour) but can be set to ``False`` on a ``SysLogHandler`` instance
behaviour) but can be set to ``False`` on a ``SysLogHandler`` instance
in order for that instance to *not* append the NUL terminator.
in order for that instance to *not* append the NUL terminator.
.. versionchanged:: 3.3
(See: :issue:`12419`.) In earlier versions, there was no facility for
an "ident" or "tag" prefix to identify the source of the message. This
can now be specified using a class-level attribute, defaulting to
``""`` to preserve existing behaviour, but which can be overridden on
a ``SysLogHandler`` instance in order for that instance to prepend
the ident to every message handled. Note that the provided ident must
be text, not bytes, and is prepended to the message exactly as is.
.. method:: encodePriority(facility, priority)
.. method:: encodePriority(facility, priority)
Encodes the facility and priority into an integer. You can pass in strings
Encodes the facility and priority into an integer. You can pass in strings
...
...
Lib/logging/handlers.py
Dosyayı görüntüle @
2353e355
...
@@ -769,6 +769,7 @@ class SysLogHandler(logging.Handler):
...
@@ -769,6 +769,7 @@ class SysLogHandler(logging.Handler):
"""
"""
return
self
.
priority_map
.
get
(
levelName
,
"warning"
)
return
self
.
priority_map
.
get
(
levelName
,
"warning"
)
ident
=
''
# prepended to all messages
append_nul
=
True
# some old syslog daemons expect a NUL terminator
append_nul
=
True
# some old syslog daemons expect a NUL terminator
def
emit
(
self
,
record
):
def
emit
(
self
,
record
):
...
@@ -779,6 +780,8 @@ class SysLogHandler(logging.Handler):
...
@@ -779,6 +780,8 @@ class SysLogHandler(logging.Handler):
exception information is present, it is NOT sent to the server.
exception information is present, it is NOT sent to the server.
"""
"""
msg
=
self
.
format
(
record
)
msg
=
self
.
format
(
record
)
if
self
.
ident
:
msg
=
self
.
ident
+
msg
if
self
.
append_nul
:
if
self
.
append_nul
:
msg
+=
'
\000
'
msg
+=
'
\000
'
"""
"""
...
...
Lib/test/test_logging.py
Dosyayı görüntüle @
2353e355
...
@@ -1482,6 +1482,11 @@ class SysLogHandlerTest(BaseTest):
...
@@ -1482,6 +1482,11 @@ class SysLogHandlerTest(BaseTest):
logger
.
error
(
"sp
\xe4
m"
)
logger
.
error
(
"sp
\xe4
m"
)
self
.
handled
.
wait
()
self
.
handled
.
wait
()
self
.
assertEqual
(
self
.
log_output
,
b
'<11>
\xef\xbb\xbf
sp
\xc3\xa4
m'
)
self
.
assertEqual
(
self
.
log_output
,
b
'<11>
\xef\xbb\xbf
sp
\xc3\xa4
m'
)
self
.
handled
.
clear
()
self
.
sl_hdlr
.
ident
=
"h
\xe4
m-"
logger
.
error
(
"sp
\xe4
m"
)
self
.
handled
.
wait
()
self
.
assertEqual
(
self
.
log_output
,
b
'<11>
\xef\xbb\xbf
h
\xc3\xa4
m-sp
\xc3\xa4
m'
)
@unittest.skipUnless
(
threading
,
'Threading required for this test.'
)
@unittest.skipUnless
(
threading
,
'Threading required for this test.'
)
...
...
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