Format traces as bullet list (MOD-32) (#3220)

* Format traces as bullet list

* Fix fmt
This commit is contained in:
Jai Agrawal 2025-02-06 13:23:42 -08:00 committed by GitHub
parent acc379d14d
commit 1e8d550e96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -243,8 +243,10 @@ pub async fn delphi_result_ingest(
for (issue, trace) in &body.issues { for (issue, trace) in &body.issues {
for path in trace.keys() { for path in trace.keys() {
thread_header thread_header.push_str(&format!(
.push_str(&format!("\n issue {issue} found at file {}", path)); "\n\n- issue {issue} found at file {}",
path
));
} }
} }