We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b107d0e commit 795ca09Copy full SHA for 795ca09
tracing-core/src/subscriber.rs
@@ -561,7 +561,7 @@ impl Interest {
561
/// `Interest::sometimes` --- if the two subscribers differ in opinion, we
562
/// will have to ask the current subscriber what it thinks, no matter what.
563
pub(crate) fn and(self, rhs: Interest) -> Self {
564
- if dbg!(self.0) == dbg!(rhs.0) {
+ if self.0 == rhs.0 {
565
self
566
} else {
567
Interest::sometimes()
0 commit comments