Beautify metrics datapoint logging (#5998)

This commit is contained in:
Michael Vines
2019-09-20 12:00:43 -07:00
committed by GitHub
parent 4b1de02bbb
commit 3d44cffcda
3 changed files with 12 additions and 2 deletions

View File

@@ -206,7 +206,7 @@ impl MetricsAgent {
barrier.wait();
}
MetricsCommand::Submit(point, level) => {
log!(level, "{:?}", point);
log!(level, "{}", point);
let (_, _, points) = points_map.entry(level).or_insert((
last_write_time,
HashMap::new(),