7240: Make default memory stats less verbose r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2021-01-10 17:59:06 +00:00 committed by GitHub
commit 3e32e39da7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -302,7 +302,7 @@ impl AnalysisStatsCmd {
report_metric("total memory", memory.allocated.megabytes() as u64, "MB");
}
if self.memory_usage {
if self.memory_usage && verbosity.is_verbose() {
print_memory_usage(host, vfs);
}