build(gyroflow): remove redundant copy and vars

This commit is contained in:
514fpv 2024-01-11 12:22:52 +08:00
parent 4a1f812fa8
commit 8245be2cde
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 18 additions and 13 deletions

View file

@ -0,0 +1,13 @@
diff --git a/src/util.rs b/src/util.rs
index 8bcbd2e0..7e51865f 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -226,7 +226,7 @@ pub fn init_logging() {
.init().unwrap();
}
} else {
- let log_config = [ "mp4parse", "wgpu", "naga", "akaze", "ureq", "rustls", "mdk" ]
+ let log_config = [ "mp4parse", "wgpu", "naga", "akaze", "ureq", "rustls" ]
.into_iter()
.fold(ConfigBuilder::new(), |mut cfg, x| { cfg.add_filter_ignore_str(x); cfg })
.build();