From 3a4ac5946710461a527b33231c662295a8b2824f Mon Sep 17 00:00:00 2001 From: Luna Yao <40349250+ZnqbuZ@users.noreply.github.com> Date: Tue, 14 Apr 2026 12:10:38 +0200 Subject: [PATCH] log: change default log level of tests to WARNING (#2113) --- easytier/src/common/log.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easytier/src/common/log.rs b/easytier/src/common/log.rs index e546b5a2..5657aa9b 100644 --- a/easytier/src/common/log.rs +++ b/easytier/src/common/log.rs @@ -274,7 +274,7 @@ mod tests { #[ctor::ctor] fn init() { let _ = Registry::default() - .with(console_layers(Some(LevelFilter::DEBUG)).unwrap()) + .with(console_layers(Some(LevelFilter::WARN)).unwrap()) .try_init(); }