Python: CG trace: XML exporter will tell what file it wrote to

This commit is contained in:
Rasmus Wriedt Larsen
2020-07-23 17:38:54 +02:00
parent c45cc2aa2f
commit 14c51eb3c7

View File

@@ -42,3 +42,5 @@ class XMLExporter:
tree = etree.ElementTree(root)
tree.write(outfile_path, encoding="utf-8", pretty_print=True)
print(f"Wrote {len(recorded_calls)} recorded calls to {outfile_path}")