From 4db85493e8210027c7047f2ca585e86c2b772174 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 23 Oct 2022 22:15:12 +0100 Subject: [PATCH] AK+Meta: Add WEB_FETCH_DEBUG macro --- AK/Debug.h.in | 4 ++++ Meta/CMake/all_the_debug_macros.cmake | 1 + 2 files changed, 5 insertions(+) diff --git a/AK/Debug.h.in b/AK/Debug.h.in index 2f306ce684..c07eba6544 100644 --- a/AK/Debug.h.in +++ b/AK/Debug.h.in @@ -506,6 +506,10 @@ #cmakedefine01 WEBSERVER_DEBUG #endif +#ifndef WEB_FETCH_DEBUG +#cmakedefine01 WEB_FETCH_DEBUG +#endif + #ifndef WEB_WORKER_DEBUG #cmakedefine01 WEB_WORKER_DEBUG #endif diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index c7e3fe4337..a36d64fcce 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -215,6 +215,7 @@ set(WASM_VALIDATOR_DEBUG ON) set(WEBDRIVER_DEBUG ON) set(WEBGL_CONTEXT_DEBUG ON) set(WEBSERVER_DEBUG ON) +set(WEB_FETCH_DEBUG ON) set(WEB_WORKER_DEBUG ON) set(WINDOWMANAGER_DEBUG ON) set(WSMESSAGELOOP_DEBUG ON)