Skip to content

Commit

Permalink
chore(core): clean up forgotten debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
vmenge committed Dec 27, 2024
1 parent c0226a1 commit f537eb3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions core/src/exit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,12 @@ impl<E> Deref for SharedErr<E> {
type Target = E;

fn deref(&self) -> &Self::Target {
let name = type_name::<E>();
println!("deref called on {name}!");
self.err.deref()
}
}

impl<E> AsRef<E> for SharedErr<E> {
fn as_ref(&self) -> &E {
let name = type_name::<E>();
println!("asref called on {name}!");
self.err.as_ref()
}
}
Expand Down

0 comments on commit f537eb3

Please sign in to comment.