Skip to content

Commit

Permalink
rm dbg
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Aug 12, 2020
1 parent b107d0e commit 795ca09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-core/src/subscriber.rs
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ impl Interest {
/// `Interest::sometimes` --- if the two subscribers differ in opinion, we
/// will have to ask the current subscriber what it thinks, no matter what.
pub(crate) fn and(self, rhs: Interest) -> Self {
if dbg!(self.0) == dbg!(rhs.0) {
if self.0 == rhs.0 {
self
} else {
Interest::sometimes()
Expand Down

0 comments on commit 795ca09

Please sign in to comment.