Compare commits

..

No commits in common. "fceebd1e2d3d2d813b90cbfd1bb4150b06a8b952" and "d13dd89fcbd8ca0ffdfe2246f88d6c5022c117a2" have entirely different histories.

1 changed files with 4 additions and 2 deletions

View File

@ -276,7 +276,7 @@ XREF_OUTPUT_DIRNAME = "xref_output"
if __name__ == "__main__":
configs = load_configuration()
working_directory = configs.get("working_directory")
# <-- MODIFICADO: Abrir archivo log -->
log_filepath = os.path.join(
os.path.dirname(os.path.abspath(__file__)), LOG_FILENAME
@ -287,7 +287,9 @@ if __name__ == "__main__":
log_message("=" * 40 + " LOG START " + "=" * 40, log_f)
# --- PARTE 1: BUSCAR ARCHIVOS ---
xml_project_dir = working_directory
base_search_dir = "XML Project"
script_dir = os.path.dirname(os.path.abspath(__file__))
xml_project_dir = os.path.join(script_dir, base_search_dir)
log_message(
f"Buscando archivos XML recursivamente en: '{xml_project_dir}'", log_f