feat(xtask): Add <time> in log sync reports.

This patch adds `<time>` around the values in the Time Column.
This commit is contained in:
Ivan Enderlin
2026-02-05 08:42:54 +01:00
parent edbddbdb55
commit ae9fe44a7c
+2 -1
View File
@@ -203,7 +203,7 @@ pub(super) fn run(log_path: path::PathBuf, output_path: path::PathBuf) -> Result
<td>{timeout}</td>
<td>{request_size}</td>
<td>{response_size}</td>
<td>{time}</td>
<td><time datetime=\"{date_time}\">{time}</time></td>
<td>
<div class=\"span\" style=\"--start-at: {start_at}; --duration: {duration}\"><span>{duration_label}</span></div>
<details>
@@ -243,6 +243,7 @@ pub(super) fn run(log_path: path::PathBuf, output_path: path::PathBuf) -> Result
.clone()
.map(|response_size| response_size.to_string())
.unwrap_or_else(|| "".to_owned()),
date_time = start_at.format("%+"),
time = start_at.format("%H:%M:%S%.3f"),
start_at = start_at
.timestamp_millis()