We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cadade9 commit 6172c20Copy full SHA for 6172c20
flask_cors/extension.py
@@ -193,7 +193,7 @@ def cors_after_request(resp):
193
normalized_path = unquote_plus(request.path)
194
for res_regex, res_options in resources:
195
if try_match(normalized_path, res_regex):
196
- LOG.debug("Request to '%s' matches CORS resource '%s'. Using options: %s",
+ LOG.debug("Request to '%r' matches CORS resource '%s'. Using options: %s",
197
request.path, get_regexp_pattern(res_regex), res_options)
198
set_cors_headers(resp, res_options)
199
break
0 commit comments