From 6a4f34750e1c689d60574c890db74977b12a8c77 Mon Sep 17 00:00:00 2001 From: Jim Moffet Date: Sat, 25 Jun 2022 13:13:12 -0700 Subject: [PATCH] clean up --- app/authentication/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/authentication/auth.py b/app/authentication/auth.py index d9a9a8dfb..4c4b88596 100644 --- a/app/authentication/auth.py +++ b/app/authentication/auth.py @@ -72,7 +72,6 @@ def requires_internal_auth(expected_client_id): if expected_client_id not in current_app.config.get('INTERNAL_CLIENT_API_KEYS'): raise TypeError("Unknown client_id for internal auth") - current_app.logger.info('Authorised for internal client_id {}'.format(expected_client_id)) # TODO remove request_helper.check_proxy_header_before_request() auth_token = _get_auth_token(request) client_id = _get_token_issuer(auth_token)