Remove debug crate I used to fix this problem

This commit is contained in:
afonsofrancof 2024-07-31 00:14:50 +01:00
parent c2c4c8796d
commit 2891589652
No known key found for this signature in database

View File

@ -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