added informational prints
This commit is contained in:
parent
cd8b7e6218
commit
bfc67364b9
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,7 @@ def get_java_files(root_dir:str) -> list:
|
|||
# Create relative file path from the root_dir
|
||||
relative_path = os.path.relpath(os.path.join(dirpath, filename), root_dir)
|
||||
java_files.append(relative_path)
|
||||
print(java_files)
|
||||
print(f"Found {len(java_files)} Java files in {root_dir} and its subdirectories.")
|
||||
return java_files
|
||||
|
||||
|
||||
|
@ -327,6 +327,9 @@ def generate_puml(root_dir:str=".", no_pkgs:bool=False) -> None:
|
|||
puml_file.write("@enduml\n")
|
||||
|
||||
|
||||
print(f"PlantUML written to {root_dir}/generated_class_diagram.puml")
|
||||
|
||||
|
||||
|
||||
def get_arguments(argv: list) -> tuple:
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue