Skip to content

Commit

Permalink
remove logging println! (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasKl authored Aug 28, 2024
1 parent 1afc6eb commit 5a52d30
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion wellen/src/vcd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,6 @@ fn find_last(haystack: &[u8], needle: u8) -> Option<usize> {
#[inline]
fn parse_inner_index(index: &[u8]) -> Option<VarIndex> {
let sep = index.iter().position(|b| *b == b':');
println!("{}", std::str::from_utf8(index).unwrap());
match sep {
None => {
let inner_str = std::str::from_utf8(index).unwrap();
Expand Down

0 comments on commit 5a52d30

Please sign in to comment.