From 0c6d094a7e9a1cf809d4dc40ecad03dfcb975873 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 29 Oct 2023 22:57:56 +0100 Subject: [PATCH] LibJS/JIT: Stop logging JIT success by default (but still log failure) --- Userland/Libraries/LibJS/JIT/Compiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/JIT/Compiler.cpp b/Userland/Libraries/LibJS/JIT/Compiler.cpp index 29b0166c86..fe8c0e480d 100644 --- a/Userland/Libraries/LibJS/JIT/Compiler.cpp +++ b/Userland/Libraries/LibJS/JIT/Compiler.cpp @@ -24,7 +24,7 @@ #if ARCH(X86_64) -# define LOG_JIT_SUCCESS 1 +# define LOG_JIT_SUCCESS 0 # define LOG_JIT_FAILURE 1 # define DUMP_JIT_MACHINE_CODE_TO_STDOUT 0 # define DUMP_JIT_DISASSEMBLY 0