diff options
Diffstat (limited to 'components/net/fetch/methods.rs')
-rw-r--r-- | components/net/fetch/methods.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/net/fetch/methods.rs b/components/net/fetch/methods.rs index 7d641090649..191ea0cb41f 100644 --- a/components/net/fetch/methods.rs +++ b/components/net/fetch/methods.rs @@ -203,6 +203,7 @@ pub fn main_fetch( // Step 2.4. if should_request_be_blocked_by_csp(request) == csp::CheckResult::Blocked { + warn!("Request blocked by CSP"); response = Some(Response::network_error(NetworkError::Internal( "Blocked by Content-Security-Policy".into(), ))) |