fix the way using logging.exception

This commit is contained in:
jiajunhuang 2016-11-19 15:16:20 +08:00
parent 879b9a4a15
commit 9eb4cecbc1
2 changed files with 5 additions and 6 deletions

View File

@ -67,7 +67,7 @@ class Request:
try:
self.parsed_json = json_loads(self.body)
except Exception:
pass
log.exception("failed when parsing body as json")
return self.parsed_json
@ -88,9 +88,9 @@ class Request:
boundary = parameters['boundary'].encode('utf-8')
self.parsed_form, self.parsed_files = (
parse_multipart_form(self.body, boundary))
except Exception as e:
log.exception(e)
pass
except Exception:
log.exception("failed when parsing form")
return self.parsed_form
@property

View File

@ -295,8 +295,7 @@ class Sanic:
except Exception as e:
log.exception(
'Experienced exception while trying to serve: {}'.format(e))
pass
'Experienced exception while trying to serve')
log.info("Server Stopped")