Skip to content

Commit

Permalink
Remove remaining debug printlns
Browse files Browse the repository at this point in the history
  • Loading branch information
kellerkindt committed Sep 13, 2021
1 parent 4568b1f commit b6d5f77
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/syn/io/proto_read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,9 @@ impl<'a> ProtobufReader<'a> {
let content_end = content_position + content_length;

tags.push_back((tag, format, content_position..content_end));
eprintln!("{:?}", tags);
position = content_end;
}

eprintln!("tags {:?}", tags);

Ok(State::Enclosed {
tag_counter: 1,
tags,
Expand Down Expand Up @@ -260,8 +257,6 @@ impl<'a> Reader for ProtobufReader<'a> {
match self.next_tag_range::<true>() {
None => Err(Error::MissingRequiredField(C::NAME)),
Some(range) => {
eprintln!("{}: range={:?}", C::NAME, range);

let (format, range, tag) = {
let reader = &mut &self.source[range.clone()];
let len_before = reader.len();
Expand Down

0 comments on commit b6d5f77

Please sign in to comment.