From b639599adeb0223e589b098c7222631092d661e6 Mon Sep 17 00:00:00 2001 From: Elad Ashkenazi <18193363+elad335@users.noreply.github.com> Date: Sat, 27 Jul 2024 12:20:49 +0300 Subject: [PATCH] reduce logging --- Utilities/JITLLVM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/JITLLVM.cpp b/Utilities/JITLLVM.cpp index 1e011a3b80..09f3ca4b85 100644 --- a/Utilities/JITLLVM.cpp +++ b/Utilities/JITLLVM.cpp @@ -372,7 +372,7 @@ public: return; } - jit_log.notice("LLVM: Created module: %s", _module->getName().data()); + jit_log.trace("LLVM: Created module: %s", _module->getName().data()); // Restore space that was overestimated ensure(m_compiler->add_sub_disk_space(max_size - module_file.size()));