Make debug logging into an optional feature

This commit is contained in:
Michael Mikovsky
2025-11-11 11:00:28 -07:00
parent 379b6a7e25
commit 258599c9c7
12 changed files with 151 additions and 38 deletions
+1 -3
View File
@@ -11,8 +11,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let mut input = String::new();
stdin().read_line(&mut input).expect("Failed to read line");
// println!("{}", input);
let args = input.trim().split(" ").collect::<Vec<&str>>();
match args[0] {
@@ -32,6 +30,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
}
}
println!("{:?}", args);
// println!("{:?}", args);
}
}