mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #7077: Fixed bug in previous fix.
This commit is contained in:
parent
0ceb671aff
commit
89d8f82d01
1 changed files with 1 additions and 1 deletions
|
@ -770,7 +770,7 @@ class SysLogHandler(logging.Handler):
|
|||
The record is formatted, and then sent to the syslog server. If
|
||||
exception information is present, it is NOT sent to the server.
|
||||
"""
|
||||
msg = self.format(record)
|
||||
msg = self.format(record) + '\000'
|
||||
"""
|
||||
We need to convert record level to lowercase, maybe this will
|
||||
change in the future.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue