1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

WebServer: Put dbgln's behind WEBSERVER_DEBUG

These dbgln's caused excessive load in the WebServer process,
accounting for ~67% of the processing time when serving a webpage
with a bunch of resources like serenityos.org/happy/2nd/.
This commit is contained in:
Edwin Hoksberg 2021-05-30 16:42:03 +02:00 committed by Linus Groh
parent a557f83f8c
commit e68780e1ad
3 changed files with 13 additions and 5 deletions

View file

@ -422,6 +422,10 @@
#cmakedefine01 WASM_TRACE_DEBUG
#endif
#ifndef WEBSERVER_DEBUG
#cmakedefine01 WEBSERVER_DEBUG
#endif
#ifndef WINDOWMANAGER_DEBUG
#cmakedefine01 WINDOWMANAGER_DEBUG
#endif