From a707a2e49ea1777a601b6755ecdab4012e30ee43 Mon Sep 17 00:00:00 2001 From: Antoine Beyeler Date: Mon, 11 Nov 2024 18:13:55 +0100 Subject: [PATCH] Brute-force silence the spurious walkers error at shutdown --- crates/utils/re_log/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/utils/re_log/src/lib.rs b/crates/utils/re_log/src/lib.rs index a76fef79b70e..debe25a13802 100644 --- a/crates/utils/re_log/src/lib.rs +++ b/crates/utils/re_log/src/lib.rs @@ -112,6 +112,9 @@ pub fn default_log_filter() -> String { } } + //TODO(#8077): should be removed as soon as the upstream issue is resolved + rust_log += ",walkers::download=off"; + rust_log }