profile type inference

This commit is contained in:
Aleksey Kladov 2019-05-21 16:24:53 +03:00
parent 0f3e85002b
commit f63be06002
4 changed files with 6 additions and 3 deletions

View file

@ -198,6 +198,7 @@ fn print(lvl: usize, msgs: &[Message], out: &mut impl Write) {
if l != lvl {
continue;
}
writeln!(out, "{} {:6}ms - {}", indent, dur.as_millis(), msg)
.expect("printing profiling info to stdout");