Make default memory stats less verbose

This commit is contained in:
Aleksey Kladov 2021-01-10 20:58:02 +03:00
parent 035fed5f9f
commit a0957723fe

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);
}