You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using this crate indirectly through the tcx crate, and when I try to debug! things in my application, I also get debug messages from this crate, which floods my log.
I'm happy to receive the logs from this crate at a trace! level, but I think debug! may interfere too much. Would it be possible to either lower the logging level from this crate to trace!, or in some way remove the logging information when the crate is being used elsewhere?
Come to think of it, I could probably filter on the module in my own application.
The text was updated successfully, but these errors were encountered:
OK, I was able to filter on the module using filter_module("serde_xml_rs::de", LevelFilter::Off) ... My request to lower the logging level still stands, though. 😄
I am using this crate indirectly through the tcx crate, and when I try to
debug!
things in my application, I also get debug messages from this crate, which floods my log.I'm happy to receive the logs from this crate at a
trace!
level, but I thinkdebug!
may interfere too much. Would it be possible to either lower the logging level from this crate totrace!
, or in some way remove the logging information when the crate is being used elsewhere?Come to think of it, I could probably filter on the module in my own application.
The text was updated successfully, but these errors were encountered: