From 6adf4644b4490f2e1af5d017e90ffa0ed65a07d7 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Mon, 3 Nov 2014 17:17:05 -0500 Subject: [PATCH] Remove unneeded extra logging call --- endpoints/common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/endpoints/common.py b/endpoints/common.py index 0a88b3900..647bf9a51 100644 --- a/endpoints/common.py +++ b/endpoints/common.py @@ -132,7 +132,6 @@ def handle_dme(ex): @app.errorhandler(CannotSendEmailException) def handle_emailexception(ex): - logger.exception(ex) message = 'Could not send email. Please contact an administrator and report this problem.' return make_response(json.dumps({'message': message}), 400)