Downgrade CORS middleware warning to info

This commit is contained in:
Will Daly
2015-03-11 15:43:01 -04:00
parent f473c474bd
commit d9d26796e8

View File

@@ -100,7 +100,7 @@ def is_cross_domain_request_allowed(request):
# request or not.
log.debug(u"Referrer hostname is `None`, so it is not on the whitelist.")
elif referer_hostname != request.get_host():
log.warning(
log.info(
(
u"Domain '%s' is not on the cross domain whitelist. "
u"Add the domain to `CORS_ORIGIN_WHITELIST` or set "