summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Latchford <alex.latchford@gmail.com>2015-05-11 17:09:49 +0100
committerAlex Latchford <alex.latchford@gmail.com>2015-05-11 17:09:49 +0100
commit890d85472a56a0a619c37c830e98ef7926807d87 (patch)
treeec3a0f485527529d3ec8fc03608dbc3ab623eb06
parent7fe3d55957e930f0a0f9d1aff4de4d77238fc639 (diff)
downloadcherrypy-890d85472a56a0a619c37c830e98ef7926807d87.tar.gz
Remove old format of serialising stacktrace in favour of new API
-rw-r--r--cherrypy/_cplogging.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/cherrypy/_cplogging.py b/cherrypy/_cplogging.py
index 9a2f5db7..19d1d91e 100644
--- a/cherrypy/_cplogging.py
+++ b/cherrypy/_cplogging.py
@@ -211,7 +211,6 @@ class LogManager(object):
"""
exc_info = None
if traceback:
- msg += _cperror.format_exc()
exc_info = _cperror._exc_info()
self.error_log.log(severity, ' '.join((self.time(), context, msg)), exc_info=exc_info)