Issue #7077: Fixed bug in previous fix.
This commit is contained in:
parent
0ceb671aff
commit
89d8f82d01
|
@ -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…
Reference in New Issue