diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/unencrypted.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/unencrypted.rs b/src/client/unencrypted.rs index 3f3a133..dcd10c6 100644 --- a/src/client/unencrypted.rs +++ b/src/client/unencrypted.rs @@ -52,7 +52,6 @@ impl<'j> JabberClient<'j> { pub async fn get_features(&mut self) -> Result<Option<Vec<StreamFeature>>> { if let Some(features) = Element::read(&mut self.reader).await? { - println!("{:?}", features); Ok(Some(features.try_into()?)) } else { Ok(None) |