mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-01 06:51:02 +00:00
fix/jaeger: avoid array debug repr (#2685)
This commit is contained in:
committed by
GitHub
parent
5929d1ef15
commit
b1b178d186
@@ -212,7 +212,7 @@ impl LazyIdent for Hash {
|
||||
}
|
||||
|
||||
fn extra_tags(&self, span: &mut Span) {
|
||||
span.add_string_fmt_debug_tag("relay-parent", self.0);
|
||||
span.add_string_fmt_debug_tag("relay-parent", self);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -222,7 +222,7 @@ impl LazyIdent for &Hash {
|
||||
}
|
||||
|
||||
fn extra_tags(&self, span: &mut Span) {
|
||||
span.add_string_fmt_debug_tag("relay-parent", self.0);
|
||||
span.add_string_fmt_debug_tag("relay-parent", self);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user