From 04aa7495eab16bab98c750e8676e5fc13e73f9dc Mon Sep 17 00:00:00 2001 From: Matt Drayer Date: Wed, 10 Apr 2019 11:22:19 -0400 Subject: [PATCH] Downgrade log level from warning to info for expected consent gating workflow. --- openedx/features/enterprise_support/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/features/enterprise_support/api.py b/openedx/features/enterprise_support/api.py index c3fe886010..ff835be5e2 100644 --- a/openedx/features/enterprise_support/api.py +++ b/openedx/features/enterprise_support/api.py @@ -303,7 +303,7 @@ def data_sharing_consent_required(view_func): consent_url = get_enterprise_consent_url(request, course_id, enrollment_exists=True) if consent_url: real_user = getattr(request.user, 'real_user', request.user) - LOGGER.warning( + LOGGER.info( u'User %s cannot access the course %s because they have not granted consent', real_user, course_id,