mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-12-24 04:48:21 -06:00
fix excessive logging
This commit is contained in:
parent
97122bbd2b
commit
b765a74415
|
@ -7,7 +7,7 @@ use std::io::Write;
|
||||||
pub fn init() {
|
pub fn init() {
|
||||||
let mut env = Env::default();
|
let mut env = Env::default();
|
||||||
if cfg!(debug_assertions) {
|
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)
|
Builder::from_env(env)
|
||||||
.format(|buf, record| {
|
.format(|buf, record| {
|
||||||
|
|
Loading…
Reference in a new issue