From f5de4c3dd674feda0cb3e7986bc9fc356a4a6b73 Mon Sep 17 00:00:00 2001 From: rmg-x Date: Sat, 10 May 2025 15:50:48 -0500 Subject: [PATCH] LibWeb/ContentSecurityPolicy: Remove noisy "unknown directive" log --- .../LibWeb/ContentSecurityPolicy/Directives/DirectiveFactory.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibWeb/ContentSecurityPolicy/Directives/DirectiveFactory.cpp b/Libraries/LibWeb/ContentSecurityPolicy/Directives/DirectiveFactory.cpp index 336d8e45bb9..3d1e10f69d6 100644 --- a/Libraries/LibWeb/ContentSecurityPolicy/Directives/DirectiveFactory.cpp +++ b/Libraries/LibWeb/ContentSecurityPolicy/Directives/DirectiveFactory.cpp @@ -12,7 +12,6 @@ namespace Web::ContentSecurityPolicy::Directives { GC::Ref create_directive(GC::Heap& heap, String name, Vector value) { - dbgln("Potential FIXME: Creating unknown Content Security Policy directive: {}", name); return heap.allocate(move(name), move(value)); }