We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0206f74 commit 33561fbCopy full SHA for 33561fb
1 file changed
madmatrix/model_handling.py
@@ -1289,6 +1289,11 @@ def write_parameter_class_files(self):
1289
if os.path.exists(src_cc):
1290
os.replace(src_cc, dst_cc)
1291
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
+
1297
# AV - overload export_cpp.UFOModelConverterCPP method (improve formatting)
1298
def generate_parameters_class_files(self):
1299
###file_h, file_cc = super().generate_parameters_class_files()
0 commit comments