We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99684cb commit a5f022aCopy full SHA for a5f022a
openedx/core/djangoapps/cors_csrf/helpers.py
@@ -44,7 +44,7 @@ def is_cross_domain_request_allowed(request):
44
return False
45
46
if not referer_parts.scheme == 'https':
47
- log.debug("Referer '%s' must have the scheme 'https'")
+ log.debug("Referer '%s' must have the scheme 'https'", str(referer))
48
49
50
# Reduce the referer URL to just the scheme and authority
0 commit comments