[script] debugging format

This commit is contained in:
tangxifan 2022-08-22 17:04:30 -07:00
parent 2f5ea0cabb
commit 4a7c3fce93
1 changed files with 6 additions and 5 deletions

View File

@ -14,6 +14,7 @@ from xml.dom import minidom
from datetime import timedelta from datetime import timedelta
import time import time
import datetime import datetime
import re
##################################################################### #####################################################################
# Error codes # Error codes
@ -84,15 +85,15 @@ def convert_arch_xml_from_v1p1_to_v1p2(input_fname, output_fname):
tile_node.appendChild(sub_tile_node) tile_node.appendChild(sub_tile_node)
# Output the modified content # Output the modified content
output_xml_str = doc.toprettyxml(indent=" ")
with open(output_fname, "w") as output_xml_f: with open(output_fname, "w") as output_xml_f:
output_xml_f.write(output_xml_str) doc.writexml(output_xml_f, indent=" ", newl='\n')
# Finish up # Finish up
end_time = time.time() end_time = time.time()
end_time_str = datetime.datetime.fromtimestamp(end_time).isoformat() time_diff = timedelta(seconds=(end_time - start_time))
log_end_str = " [Done] took " + end_time_str log_end_str1 = "[Done]"
logging.info("." * (len(log_str) - len(log_end_str)) + log_end_str) log_end_str2 = " took " + str(time_diff)
logging.info(log_end_str1 + "." * (len(log_str) - len(log_end_str1) - len(log_end_str2)) + log_end_str2)
return status return status