From 28915896520639787ad6e768c29c21342b5b2375 Mon Sep 17 00:00:00 2001 From: afonsofrancof Date: Wed, 31 Jul 2024 00:14:50 +0100 Subject: [PATCH] Remove debug crate I used to fix this problem --- src/list.rs | 13 ------------- 1 file changed, 13 deletions(-) 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