Bug 1826529 - Show nsContentPolicyType as string in CSP log. r=freddyb

Differential Revision: https://phabricator.services.mozilla.com/D174740
This commit is contained in:
Tom Schuster 2023-04-05 15:23:00 +00:00
Родитель 947aaa2ad5
Коммит d6d24bc0e0
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -137,7 +137,8 @@ nsCSPContext::ShouldLoad(nsContentPolicyType aContentType,
if (CSPCONTEXTLOGENABLED()) {
CSPCONTEXTLOG(("nsCSPContext::ShouldLoad, aContentLocation: %s",
aContentLocation->GetSpecOrDefault().get()));
CSPCONTEXTLOG((">>>> aContentType: %d", aContentType));
CSPCONTEXTLOG((">>>> aContentType: %s",
NS_CP_ContentTypeName(aContentType)));
}
// This ShouldLoad function is called from nsCSPService::ShouldLoad,