diff --git a/refit/src/modules/librefit.py b/refit/src/modules/librefit.py index 8e305a2..4674f7d 100644 --- a/refit/src/modules/librefit.py +++ b/refit/src/modules/librefit.py @@ -158,9 +158,9 @@ def create_linear_directories(input_path, target_depth, current_depth): # TODO: - add dynamic name input # - add docstring - logger.debug( - f"FUNC: create_linear_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', current_depth='{current_depth}'" - ) + # logger.debug( + # f"FUNC: create_linear_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', current_depth='{current_depth}'" + # ) if current_depth > target_depth: return @@ -185,9 +185,9 @@ def create_parallel_directories(input_path, target_depth, width): # TODO: - add dynamic name input # - add docstring - logger.debug( - f"FUNC: create_parallel_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', width='{width}'" - ) + # logger.debug( + # f"FUNC: create_parallel_directories(entered) VALUES: path='{input_path}', target_depth='{target_depth}', width='{width}'" + # ) for i in range(width): directory_name = "branch_" + get_standard_name_number(i, get_int_length(width))