Skip to content

Commit

Permalink
Set --log-format to print timestamp (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
ia0 authored Aug 17, 2023
1 parent f92af4c commit 5cf95c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/xtask/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,8 @@ impl RunnerOptions {
println!("gdb-multiarch -ex 'file {elf}' -ex 'target remote localhost:2331'");
}
let mut probe_run = wrap_command()?;
probe_run.arg("probe-run");
// TODO(https://github.com/knurling-rs/probe-run/issues/421): Use a simpler flag.
probe_run.args(["probe-run", "--log-format={t} {L} {s}\n└─ {m} @ {F}:{l}"]);
probe_run.arg(format!("--chip={chip}"));
if main.release {
probe_run.arg("--backtrace=never");
Expand Down

0 comments on commit 5cf95c9

Please sign in to comment.