Remove useless logs (#249)

* Remove useless logs
This commit is contained in:
Nikolay Kim 2023-11-17 20:03:59 +06:00 committed by GitHub
parent f9759a4ddc
commit d441e79208
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 13 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.3.8] - 2023-11-17
* Remove useless logs
## [0.3.7] - 2023-11-12
* Handle io flush during write back-pressure

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-io"
version = "0.3.7"
version = "0.3.8"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]

View file

@ -280,13 +280,6 @@ impl<F> Io<F> {
self.0.clone()
}
#[inline]
#[doc(hidden)]
#[deprecated]
pub fn remove_keepalive_timer(&self) {
self.stop_keepalive_timer()
}
/// Get current io error
fn error(&self) -> Option<io::Error> {
self.0 .0.error.take()
@ -460,7 +453,6 @@ impl<F> Io<F> {
Poll::Pending
}
} else if ready {
log::trace!("waking up io read task");
flags.remove(Flags::RD_READY);
self.0 .0.flags.set(flags);
Poll::Ready(Ok(Some(())))
@ -560,7 +552,7 @@ impl<F> Io<F> {
} else {
match self.poll_read_ready(cx) {
Poll::Pending | Poll::Ready(Ok(Some(()))) => {
log::trace!("not enough data to decode next frame");
log::debug!("not enough data to decode next frame");
Ok(decoded)
}
Poll::Ready(Err(e)) => Err(RecvError::PeerGone(Some(e))),
@ -640,7 +632,7 @@ impl<F> Io<F> {
/// Wait for status updates
pub fn poll_status_update(&self, cx: &mut Context<'_>) -> Poll<IoStatusUpdate> {
let flags = self.flags();
if flags.contains(Flags::IO_STOPPED) {
if flags.contains(Flags::IO_STOPPED | Flags::IO_STOPPING) {
Poll::Ready(IoStatusUpdate::PeerGone(self.error()))
} else if flags.contains(Flags::DSP_STOP) {
self.0 .0.remove_flags(Flags::DSP_STOP);
@ -931,12 +923,25 @@ mod tests {
use crate::testing::IoTest;
#[ntex::test]
async fn test_recv() {
async fn test_basics() {
let (client, server) = IoTest::create();
client.remote_buffer_cap(1024);
let server = Io::new(server);
assert!(server.eq(&server));
assert!(server.0.eq(&server.0));
assert!(format!("{:?}", Flags::IO_STOPPED).contains("IO_STOPPED"));
assert!(Flags::IO_STOPPED == Flags::IO_STOPPED);
assert!(Flags::IO_STOPPED != Flags::IO_STOPPING);
}
#[ntex::test]
async fn test_recv() {
let (client, server) = IoTest::create();
client.remote_buffer_cap(1024);
let server = Io::new(server);
server.0 .0.notify_timeout();
let err = server.recv(&BytesCodec).await.err().unwrap();

View file

@ -34,7 +34,10 @@ impl IoRef {
#[inline]
/// Check if io stream is closed
pub fn is_closed(&self) -> bool {
self.0.flags.get().contains(Flags::IO_STOPPING)
self.0
.flags
.get()
.contains(Flags::IO_STOPPING | Flags::IO_STOPPED)
}
#[inline]

View file

@ -219,5 +219,8 @@ mod tests {
format!("{:?}", T::KeepAliveTimeout).contains("DispatchItem::KeepAliveTimeout")
);
assert!(format!("{:?}", T::ReadTimeout).contains("DispatchItem::ReadTimeout"));
assert!(format!("{:?}", IoStatusUpdate::KeepAlive).contains("KeepAlive"));
assert!(format!("{:?}", RecvError::<BytesCodec>::KeepAlive).contains("KeepAlive"));
}
}