From b10d8a1871210b82dcec91e3243179416d469e32 Mon Sep 17 00:00:00 2001 From: Pakin Date: Wed, 10 Sep 2025 14:03:36 +0700 Subject: [PATCH] enable debug --- src/recipe_functions/common.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/recipe_functions/common.rs b/src/recipe_functions/common.rs index a469a32..20a2e6a 100644 --- a/src/recipe_functions/common.rs +++ b/src/recipe_functions/common.rs @@ -38,9 +38,9 @@ pub fn get_config() -> HashMap { } pub fn create_recipe_model_from_file(path: String) -> models::recipe::Recipe { - // println!("create_recipe_model_from_file: {}", path); + println!("create_recipe_model_from_file: {}", path); let mut file = File::open(path).unwrap(); - // println!("check file: {}", file.metadata().unwrap().is_file()); + println!("check file: {}", file.metadata().unwrap().is_file()); let mut data = String::new(); file.read_to_string(&mut data).unwrap();