remove pub from Traced::wrapped

This commit is contained in:
AF 2023-04-23 15:49:34 +00:00
parent 794d071fa9
commit 4afbdb81a5

View File

@ -21,7 +21,7 @@ impl<A> WithTrace for A {
} }
impl<A> Traced<A> { impl<A> Traced<A> {
pub fn wrapped(self, event: &str) -> Self { fn wrapped(self, event: &str) -> Self {
Traced { Traced {
a: self.a, a: self.a,
t: self.t.wrapped(event), t: self.t.wrapped(event),