Print timing in debug info
This commit is contained in:
parent
97bee58fbe
commit
0fa844bcf9
@ -70,11 +70,12 @@ impl UnfinishedComputation {
|
|||||||
impl FinishedComputation {
|
impl FinishedComputation {
|
||||||
pub fn to_repl(&self) -> String {
|
pub fn to_repl(&self) -> String {
|
||||||
let mut buf = String::new();
|
let mut buf = String::new();
|
||||||
for (stage, artifact) in self.artifacts.iter() {
|
for ((stage, artifact), duration) in self.artifacts.iter().zip(self.durations.iter()) {
|
||||||
let color = artifact.text_color;
|
let color = artifact.text_color;
|
||||||
let stage = stage.color(color).bold();
|
let stage = stage.color(color).bold();
|
||||||
let output = artifact.debug_output.color(color);
|
let output = artifact.debug_output.color(color);
|
||||||
write!(&mut buf, "{}: {}\n", stage, output).unwrap();
|
let timing = (duration.as_secs() as f64) + (duration.subsec_nanos() as f64 * 1e-9);
|
||||||
|
write!(&mut buf, "{} ({}s): {}\n", stage, timing, output).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
match self.text_output {
|
match self.text_output {
|
||||||
|
@ -452,7 +452,7 @@ impl Repl {
|
|||||||
let color = "green";
|
let color = "green";
|
||||||
format!("*{}", desc.name.color(color))
|
format!("*{}", desc.name.color(color))
|
||||||
} else {
|
} else {
|
||||||
desc.name
|
desc.name
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.intersperse(format!(" -> "))
|
.intersperse(format!(" -> "))
|
||||||
|
Loading…
Reference in New Issue
Block a user