downgrade lots of routine logging from error/exception to info

most of them are 400s for badly inputted phone numbers etc
This commit is contained in:
Leo Hemsted
2018-02-08 13:38:32 +00:00
parent 1326eae587
commit 08c35b3c72
3 changed files with 9 additions and 10 deletions

View File

@@ -234,7 +234,6 @@ def init_app(app):
@app.errorhandler(404)
def page_not_found(e):
msg = e.description or "Not found"
app.logger.exception(msg)
return jsonify(result='error', message=msg), 404