Skip to content

Commit f062c25

Browse files
committed
fix: delete debug logs
1 parent e959c03 commit f062c25

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

src/lib.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -220,16 +220,7 @@ pub fn capture_window(x: u32, y: u32) -> ImageData {
220220

221221
let mut sorted_windows: Vec<_> = windows.iter().collect();
222222
sorted_windows.sort_by(|a, b| b.z().unwrap().cmp(&a.z().unwrap()));
223-
println!("Total windows: {}", sorted_windows.len());
224223
for (index, w) in sorted_windows.iter().enumerate() {
225-
println!(
226-
"[{}] {} {} {} {}",
227-
index,
228-
w.title().unwrap(),
229-
w.app_name().unwrap(),
230-
w.pid().unwrap(),
231-
w.z().unwrap()
232-
);
233224
}
234225

235226
let window = sorted_windows

0 commit comments

Comments
 (0)