more verbose errors
This commit is contained in:
parent
f0bd6020a2
commit
5b5b2849b8
1 changed files with 8 additions and 3 deletions
|
|
@ -197,9 +197,14 @@ where
|
|||
break 'outer;
|
||||
}
|
||||
Err(err) if err.kind() == ErrorKind::UnexpectedEof => {
|
||||
tracing::error!("Process socket got error: {err:?}");
|
||||
increment_counter(self.counter);
|
||||
return Ok(())},
|
||||
Err(e) => return Err(e),
|
||||
return Ok(())
|
||||
}
|
||||
Err(e) => {
|
||||
tracing::error!("Process socket got error: {e:?}");
|
||||
return Err(e)
|
||||
}
|
||||
}
|
||||
}
|
||||
increment_counter(self.counter);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue