We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64752ef commit c007ac3Copy full SHA for c007ac3
crates/rust-analyzer/src/lib.rs
@@ -88,6 +88,7 @@ fn print_memory_usage(mut host: AnalysisHost, vfs: Vfs) {
88
mem.push(("Remaining".into(), profile::memory_usage().allocated));
89
90
for (name, bytes) in mem {
91
- eprintln!("{:>8} {}", bytes, name);
+ // NOTE: Not a debug print, so avoid going through the `eprintln` defined above.
92
+ std::eprintln!("{:>8} {}", bytes, name);
93
}
94
0 commit comments