Removed logging

This commit is contained in:
famfo 2022-01-06 23:51:02 +01:00
parent fe6307bff8
commit da1677f455
2 changed files with 2 additions and 4 deletions

View file

@ -13,7 +13,7 @@ dependencies = [
[[package]] [[package]]
name = "async-circe" name = "async-circe"
version = "0.2.0" version = "0.2.3"
dependencies = [ dependencies = [
"native-tls", "native-tls",
"tokio", "tokio",

View file

@ -188,8 +188,6 @@ impl Client {
} }
}; };
tracing::trace!("{}", buffer);
if num_bytes == 0 { if num_bytes == 0 {
return Ok(None); return Ok(None);
} }
@ -689,4 +687,4 @@ impl Config {
tracing::debug!("async-circe config: {:?}", config); tracing::debug!("async-circe config: {:?}", config);
config config
} }
} }