diff options
author | Nico Weber <thakis@chromium.org> | 2022-01-21 20:04:58 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-22 01:28:01 +0000 |
commit | 6d532649d4ed6c7ed969b9a865eef7ea5546f848 (patch) | |
tree | 084b6d22c0485939dcd87d0e19fb002d97c78af6 /Meta/CMake | |
parent | 0e56dac51e294cd1195a2bae9793aa0554468d29 (diff) | |
download | serenity-6d532649d4ed6c7ed969b9a865eef7ea5546f848.zip |
RequestServer+AK: Move happy-path logging behind REQUESTSERVER_DEBUG
vdbgln() was responsible for ~10% of samples on pv's flamegraph for
RequestServer (under request_did_finish) when loading github.com in
Browser and recording a whole-system profile. This makes that almost
completely disappear.
Diffstat (limited to 'Meta/CMake')
-rw-r--r-- | Meta/CMake/all_the_debug_macros.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index 93d4ea06c9..f3c3ca97df 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -145,6 +145,7 @@ set(PTHREAD_DEBUG ON) set(PTMX_DEBUG ON) set(REACHABLE_DEBUG ON) set(REGEX_DEBUG ON) +set(REQUESTSERVER_DEBUG ON) set(RESIZE_DEBUG ON) set(RESOURCE_DEBUG ON) set(ROUTING_DEBUG ON) |