diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-11-01 19:56:13 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2014-11-01 19:56:13 (GMT) |
commit | a79d6f40dfa6dc0df03db489e27532a5a1b644cc (patch) | |
tree | eac7d6bcc3df86f9a8b389f85bad0430e81c83ee | |
parent | 409062c669e4d3163b494a73d119aede66700f41 (diff) | |
download | cpython-a79d6f40dfa6dc0df03db489e27532a5a1b644cc.zip cpython-a79d6f40dfa6dc0df03db489e27532a5a1b644cc.tar.gz cpython-a79d6f40dfa6dc0df03db489e27532a5a1b644cc.tar.bz2 |
Brought excluded code into the scope of a try block in SysLogHandler.emit().
-rw-r--r-- | Lib/logging/handlers.py | 22 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 14 insertions, 11 deletions
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py index 201d2b5..a458529 100644 --- a/Lib/logging/handlers.py +++ b/Lib/logging/handlers.py @@ -840,18 +840,18 @@ 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) + '\000' - """ - We need to convert record level to lowercase, maybe this will - change in the future. - """ - prio = '<%d>' % self.encodePriority(self.facility, - self.mapPriority(record.levelname)) - # Message is a string. Convert to bytes as required by RFC 5424 - if type(msg) is unicode: - msg = msg.encode('utf-8') - msg = prio + msg try: + msg = self.format(record) + '\000' + """ + We need to convert record level to lowercase, maybe this will + change in the future. + """ + prio = '<%d>' % self.encodePriority(self.facility, + self.mapPriority(record.levelname)) + # Message is a string. Convert to bytes as required by RFC 5424 + if type(msg) is unicode: + msg = msg.encode('utf-8') + msg = prio + msg if self.unixsocket: try: self.socket.send(msg) @@ -37,6 +37,9 @@ Core and Builtins Library ------- +- Issue #22776: Brought excluded code into the scope of a try block in + SysLogHandler.emit(). + - Issue #17381: Fixed ranges handling in case-insensitive regular expressions. - Issue #19329: Optimized compiling charsets in regular expressions. |