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
// FIXME: this currently sets the minimum log level to error for the listed modules. It should actually be turning off logging (level=off) for specific warnings in these modules, but a bug in the tracing crate's filtering is preventing this from working as expected. See https://github.com/tokio-rs/tracing/issues/2843.
Certain warnings from bindgen are not actionable by WDR due to upstream work required. These warnings should be individually silenced instead of turning off all warnings for the bindgen module. This is currently not possible because tracing's envfilter does not have functional field value matching for logs, only for spans. See tokio-rs/tracing#2843. Since bindgen is using logs instead of traces, this probably involves fixing something in tracing-log
The text was updated successfully, but these errors were encountered:
windows-drivers-rs/crates/wdk-sys/build.rs
Line 73 in 6410897
Certain warnings from bindgen are not actionable by WDR due to upstream work required. These warnings should be individually silenced instead of turning off all warnings for the bindgen module. This is currently not possible because tracing's envfilter does not have functional field value matching for logs, only for spans. See tokio-rs/tracing#2843. Since bindgen is using
log
s instead oftrace
s, this probably involves fixing something intracing-log
The text was updated successfully, but these errors were encountered: