@@ -167,7 +167,7 @@ fn run_standard_test_flow(conf, images) {
167167 }
168168 ] {
169169 debug(
170- `info|\n --- Starting ${v_params.up_down} to ${v_params.label} ` +
170+ `info|--- Starting ${v_params.up_down} to ${v_params.label} ` +
171171 `(${v_params.branch} branch versions) ---`
172172 );
173173
@@ -234,7 +234,7 @@ fn run_standard_test_flow(conf, images) {
234234 );
235235 }
236236
237- debug(`info|\nElapsed time total: ${start_ts.elapsed}`);
237+ debug(`info|Elapsed time total: ${start_ts.elapsed}`);
238238 debug(`info|Current time: ${datetime_local()}`);
239239 debug("info|Done.");
240240 return 0;
@@ -258,7 +258,7 @@ fn main() {
258258 let passed_tests = [];
259259
260260 if (helper::is_fault_enabled(conf, "pending")) {
261- debug("info|\n --- FAULT INJECTION: PENDING PREFERENCE ---");
261+ debug("info|--- FAULT INJECTION: PENDING PREFERENCE ---");
262262 if (!helper::ensure_initial_baseline_state(conf, images)) { return 1; }
263263 if (!helper::inject_conflicting_pending_preference()) {
264264 debug("error|Failed to inject pending preference fault.");
@@ -276,7 +276,7 @@ fn main() {
276276 }
277277
278278 if (helper::is_fault_enabled(conf, "transient")) {
279- debug("info|\n --- FAULT INJECTION: TRANSIENT PREFERENCE ---");
279+ debug("info|--- FAULT INJECTION: TRANSIENT PREFERENCE ---");
280280 if (!helper::ensure_initial_baseline_state(conf, images)) { return 1; }
281281 if (!helper::inject_conflicting_transient_preference()) {
282282 debug("error|Failed to inject transient preference fault.");
@@ -293,7 +293,7 @@ fn main() {
293293 }
294294 }
295295
296- debug("info|\n --- FAULT INJECTION SUMMARY ---");
296+ debug("info|--- FAULT INJECTION SUMMARY ---");
297297 if (passed_tests.len() > 0) {
298298 debug(`info|PASSED: ${passed_tests}`);
299299 }
0 commit comments