Commit ea22487
Merge #535
535: Don't print leading space when timestamp is absent r=japaric a=jonas-schievink
This was causing aesthetically unpleasing output and thus makes defmt completely unusable:
```
INFO (11/11) running `ext_roundtrip`...
└─ integration::tests::__defmt_test_entry @ tests/integration.rs:330
INFO all tests passed!
└─ integration::tests::__defmt_test_entry @ tests/integration.rs:4
```
Now it should look like
```
INFO (11/11) running `ext_roundtrip`...
└─ integration::tests::__defmt_test_entry @ tests/integration.rs:330
INFO all tests passed!
└─ integration::tests::__defmt_test_entry @ tests/integration.rs:4
```
Fixes knurling-rs/probe-run#230
Co-authored-by: Jonas Schievink <jonasschievink@gmail.com>1 file changed
Lines changed: 6 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
152 | 152 | | |
153 | 153 | | |
154 | 154 | | |
155 | | - | |
| 155 | + | |
156 | 156 | | |
157 | 157 | | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
158 | 163 | | |
159 | 164 | | |
160 | 165 | | |
| |||
0 commit comments