forked from mirrors/relay
Remove unhelpful fields from Request debug
This commit is contained in:
parent
8b27a2dc0f
commit
ea9854d3b2
1 changed files with 0 additions and 3 deletions
|
@ -164,12 +164,9 @@ pub(crate) struct Requests {
|
||||||
impl std::fmt::Debug for Requests {
|
impl std::fmt::Debug for Requests {
|
||||||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
||||||
f.debug_struct("Requests")
|
f.debug_struct("Requests")
|
||||||
.field("client", &"Client")
|
|
||||||
.field("consecutive_errors", &"AtomicUsize")
|
|
||||||
.field("error_limit", &self.error_limit)
|
.field("error_limit", &self.error_limit)
|
||||||
.field("key_id", &self.key_id)
|
.field("key_id", &self.key_id)
|
||||||
.field("user_agent", &self.user_agent)
|
.field("user_agent", &self.user_agent)
|
||||||
.field("private_key", &"[redacted]")
|
|
||||||
.field("config", &self.config)
|
.field("config", &self.config)
|
||||||
.field("breakers", &self.breakers)
|
.field("breakers", &self.breakers)
|
||||||
.finish()
|
.finish()
|
||||||
|
|
Loading…
Reference in a new issue