From a0ecd001491a948312be4fdfd2bb8d04a0afd31e Mon Sep 17 00:00:00 2001 From: Manuel Drehwald Date: Thu, 25 Jul 2024 19:13:01 -0400 Subject: [PATCH] downgrade build msg to debug msg --- compiler/rustc_codegen_llvm/src/back/lto.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_codegen_llvm/src/back/lto.rs b/compiler/rustc_codegen_llvm/src/back/lto.rs index d061571e9ded7..014e38f11be65 100644 --- a/compiler/rustc_codegen_llvm/src/back/lto.rs +++ b/compiler/rustc_codegen_llvm/src/back/lto.rs @@ -619,7 +619,7 @@ pub(crate) fn run_pass_manager( // We will run this again with different values in the context of automatic differentiation. let first_run = true; let noop = false; - dbg!("running llvm pm opt pipeline"); + debug!("running llvm pm opt pipeline"); write::llvm_optimize(cgcx, dcx, module, config, opt_level, opt_stage, first_run, noop)?; } debug!("lto done");