diff --git a/src/list.rs b/src/list.rs index d6e9336c..c794aafa 100644 --- a/src/list.rs +++ b/src/list.rs @@ -50,19 +50,6 @@ impl PreviewWindowState { } } -use std::fs::OpenOptions; -use std::io::Write; - -fn log_debug_info(info: &str) { - let mut file = OpenOptions::new() - .append(true) - .create(true) - .open("debug.log") - .unwrap(); - - writeln!(file, "{}", info).unwrap(); -} - impl CustomList { pub fn new() -> Self { // When a function call ends with an exclamation mark, it means it's a macro, like in this