diff --git a/crates/board/CHANGELOG.md b/crates/board/CHANGELOG.md index 1a756fcc..67f6f66a 100644 --- a/crates/board/CHANGELOG.md +++ b/crates/board/CHANGELOG.md @@ -133,4 +133,4 @@ ## 0.1.0 - + diff --git a/crates/board/src/debug.rs b/crates/board/src/debug.rs index 9c451722..43fadb01 100644 --- a/crates/board/src/debug.rs +++ b/crates/board/src/debug.rs @@ -23,7 +23,6 @@ pub trait Api: Send { /// Prints a line with timestamp. fn println(line: &str) { - // TODO(probe-rs-tools > 0.24.0): Call println! without timestamp. let time = Self::time(); log::println!("{}.{:06}: {}", time / 1000000, time % 1000000, line); }