Skip to content

Commit faa1689

Browse files
committed
Rust: reduce log output
1 parent 0c10f08 commit faa1689

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

rust/extractor/src/main.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ fn main() -> anyhow::Result<()> {
4343
.module(module_path!())
4444
.verbosity(2 + cfg.verbose as usize)
4545
.init()?;
46-
log::info!("{cfg:?}");
4746
let rust_analyzer = rust_analyzer::RustAnalyzer::new(&cfg)?;
4847

4948
let traps = trap::TrapFileProvider::new(&cfg).context("failed to set up trap files")?;

rust/extractor/src/rust_analyzer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ impl RustAnalyzer {
3636
.ok(),
3737
..Default::default()
3838
};
39-
let progress = |t| (log::info!("progress: {}", t));
39+
let progress = |t| (log::trace!("progress: {}", t));
4040
let load_config = LoadCargoConfig {
4141
load_out_dirs_from_check: true,
4242
with_proc_macro_server: ProcMacroServerChoice::Sysroot,

0 commit comments

Comments
 (0)