Skip to content

Commit b4a798d

Browse files
authored
Add TODO to remove println timestamp (google#502)
1 parent a52f505 commit b4a798d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
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: 21 -->
136+
<!-- Increment to skip CHANGELOG.md test: 22 -->

crates/board/src/debug.rs

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ 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.
2627
let time = Self::time();
2728
log::println!("{}.{:06}: {}", time / 1000000, time % 1000000, line);
2829
}

0 commit comments

Comments
 (0)