Skip to content

Commit

Permalink
Remove forgotten println
Browse files Browse the repository at this point in the history
  • Loading branch information
Mallets committed Feb 15, 2024
1 parent d050b49 commit bcf412f
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions commons/zenoh-codec/src/network/declare.rs
Original file line number Diff line number Diff line change
Expand Up @@ -844,12 +844,6 @@ where
type Output = Result<(), DidntWrite>;

fn write(self, writer: &mut W, x: &interest::DeclareInterest) -> Self::Output {
println!(
"Message: {:?}, Flags: {}, Options: {}",
x,
x.flags(),
x.options()
);
let interest::DeclareInterest {
id,
interest: _,
Expand Down Expand Up @@ -895,16 +889,9 @@ where
return Err(DidntRead);
}

println!("Read, Flags: {}", imsg::flags(self.header));

// Body
let id: interest::InterestId = self.codec.read(&mut *reader)?;
let options: u8 = self.codec.read(&mut *reader)?;
println!(
"Read, Flags: {}, Options: {}",
imsg::flags(self.header),
options,
);
let interest = Interest::from((imsg::flags(self.header), options));

let mut wire_expr = None;
Expand Down

0 comments on commit bcf412f

Please sign in to comment.