From b765a74415bb8b9b8a4ed7b0600e7892fd9fe4a8 Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Mon, 30 Jan 2023 04:32:33 +0100 Subject: [PATCH] fix excessive logging --- kubi/src/logging.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubi/src/logging.rs b/kubi/src/logging.rs index 013b4e9..c3b8be7 100644 --- a/kubi/src/logging.rs +++ b/kubi/src/logging.rs @@ -7,7 +7,7 @@ use std::io::Write; pub fn init() { let mut env = Env::default(); if cfg!(debug_assertions) { - env = env.filter_or("RUST_LOG", "trace"); + env = env.filter_or("RUST_LOG", "trace,gilrs=warn,rusty_xinput=warn"); } Builder::from_env(env) .format(|buf, record| {