Supress IronRDP's decode tracing logs (#68324)

This commit is contained in:
Ryan Clark
2026-07-02 14:58:04 +02:00
committed by GitHub
parent 756a2f1d6d
commit db894153cc
+5
View File
@@ -120,6 +120,11 @@ func init() {
// TODO(zmb3): remove this after sspi-rs logging is cleaned up
rustLogLevel += ",sspi=warn"
// IronRDP instruments hot-path decode functions (e.g. RemoteFX process_frame) at INFO.
// With no tracing subscriber installed, tracing's `log` feature bridges those span
// records to env_logger as noisy non-JSON lines, so drop the span-lifecycle target.
rustLogLevel += ",tracing::span=off"
os.Setenv("RUST_LOG", rustLogLevel)
}