Skip to content

Commit 33561fb

Browse files
committed
Add some minor logging
1 parent 0206f74 commit 33561fb

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

madmatrix/model_handling.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1289,6 +1289,11 @@ def write_parameter_class_files(self):
12891289
if os.path.exists(src_cc):
12901290
os.replace(src_cc, dst_cc)
12911291

1292+
logger.info("Rename files %s->%s, %s->%s" % (
1293+
os.path.split(src_h)[-1], os.path.split(dst_h)[-1],
1294+
os.path.split(src_cc)[-1], os.path.split(dst_cc)[-1]
1295+
))
1296+
12921297
# AV - overload export_cpp.UFOModelConverterCPP method (improve formatting)
12931298
def generate_parameters_class_files(self):
12941299
###file_h, file_cc = super().generate_parameters_class_files()

0 commit comments

Comments
 (0)