Skip to content

Commit 6f01cbd

Browse files
authored
Revert "Add TODO to remove println timestamp" (google#504)
Reverts google#502 The conclusion from knurling-rs/defmt#844 (comment) is that `println` should just print its input (no timestamp, no location).
1 parent eeeda7f commit 6f01cbd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

crates/board/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,4 +133,4 @@
133133

134134
## 0.1.0
135135

136-
<!-- Increment to skip CHANGELOG.md test: 22 -->
136+
<!-- Increment to skip CHANGELOG.md test: 21 -->

crates/board/src/debug.rs

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ pub trait Api: Send {
2323

2424
/// Prints a line with timestamp.
2525
fn println(line: &str) {
26-
// TODO(probe-rs-tools > 0.24.0): Call println! without timestamp.
2726
let time = Self::time();
2827
log::println!("{}.{:06}: {}", time / 1000000, time % 1000000, line);
2928
}

0 commit comments

Comments
 (0)