mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Add io tags for logging (#267)
This commit is contained in:
parent
8ee296a399
commit
6adeadfff0
17 changed files with 258 additions and 70 deletions
|
@ -46,7 +46,8 @@ impl ReadContext {
|
|||
// dest buffer has new data, wake up dispatcher
|
||||
if inner.buffer.read_destination_size() >= hw {
|
||||
log::trace!(
|
||||
"io read buffer is too large {}, enable read back-pressure",
|
||||
"{}Io read buffer is too large {}, enable read back-pressure",
|
||||
self.0.tag(),
|
||||
total
|
||||
);
|
||||
inner.insert_flags(Flags::RD_READY | Flags::RD_BUF_FULL);
|
||||
|
@ -61,7 +62,7 @@ impl ReadContext {
|
|||
inner.read_task.wake();
|
||||
}
|
||||
}
|
||||
log::trace!("new {} bytes available, wakeup dispatcher", nbytes);
|
||||
log::trace!("{}New {} bytes available, wakeup dispatcher", self.0.tag(), nbytes);
|
||||
inner.dispatch_task.wake();
|
||||
} else {
|
||||
if nbytes >= hw {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue