Merge pull request #160 from jiajunhuang/log
fix the way using logging.exception
This commit is contained in:
commit
93f50b8ef7
|
@ -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
|
||||
|
|
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user