diff --git a/flask_jwt/__init__.py b/flask_jwt/__init__.py index 729a65d..58480a6 100644 --- a/flask_jwt/__init__.py +++ b/flask_jwt/__init__.py @@ -6,7 +6,6 @@ Flask-JWT module """ -import logging import warnings from collections import OrderedDict @@ -20,8 +19,6 @@ __version__ = '0.3.2' -logger = logging.getLogger(__name__) - current_identity = LocalProxy(lambda: getattr(_request_ctx_stack.top, 'current_identity', None)) _jwt = LocalProxy(lambda: current_app.extensions['jwt']) @@ -136,7 +133,6 @@ def _default_auth_response_handler(access_token, identity): def _default_jwt_error_handler(error): - logger.error(error) return jsonify(OrderedDict([ ('status_code', error.status_code), ('error', error.error),