Skip to content

Commit 71f940f

Browse files
committed
preserve non-JSON lines during normalization
1 parent 3e99253 commit 71f940f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/json.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ pub fn extract_rendered(output: &str, proc_res: &ProcRes) -> String {
8888
}
8989
}
9090
} else {
91-
None
91+
// preserve non-JSON lines, such as ICEs
92+
Some(format!("{}\n", line))
9293
}
9394
})
9495
.collect()

0 commit comments

Comments
 (0)