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)); }