@@ -73,8 +73,9 @@ def run_mesher_file(file_geometry, file_voxel):
73
73
74
74
# load data
75
75
try :
76
- LOGGER .info ("load the input data" )
76
+ LOGGER .info ("load the input data : start " )
77
77
data_geometry = scisave .load_config (file_geometry )
78
+ LOGGER .info ("load the input data : done" )
78
79
except Exception as ex :
79
80
LOGGER .log_exception (ex )
80
81
raise ex
@@ -84,8 +85,9 @@ def run_mesher_file(file_geometry, file_voxel):
84
85
85
86
# save results
86
87
try :
87
- LOGGER .info ("save the results" )
88
+ LOGGER .info ("save the results : start " )
88
89
scisave .write_data (file_voxel , data_voxel )
90
+ LOGGER .info ("save the results : done" )
89
91
except Exception as ex :
90
92
LOGGER .log_exception (ex )
91
93
raise ex
@@ -172,9 +174,10 @@ def run_viewer_file(file_voxel, file_viewer, **kwargs):
172
174
173
175
# load data
174
176
try :
175
- LOGGER .info ("load the input data" )
177
+ LOGGER .info ("load the input data : start " )
176
178
data_voxel = scisave .load_data (file_voxel )
177
179
data_viewer = scisave .load_config (file_viewer )
180
+ LOGGER .info ("load the input data : done" )
178
181
except Exception as ex :
179
182
LOGGER .log_exception (ex )
180
183
raise ex
@@ -251,10 +254,11 @@ def run_solver_file(file_voxel, file_problem, file_tolerance, file_solution):
251
254
252
255
# load data
253
256
try :
254
- LOGGER .info ("load the input data" )
257
+ LOGGER .info ("load the input data : start " )
255
258
data_voxel = scisave .load_data (file_voxel )
256
259
data_problem = scisave .load_config (file_problem )
257
260
data_tolerance = scisave .load_config (file_tolerance )
261
+ LOGGER .info ("load the input data : done" )
258
262
except Exception as ex :
259
263
LOGGER .log_exception (ex )
260
264
raise ex
@@ -264,8 +268,9 @@ def run_solver_file(file_voxel, file_problem, file_tolerance, file_solution):
264
268
265
269
# save results
266
270
try :
267
- LOGGER .info ("save the results" )
271
+ LOGGER .info ("save the results : start " )
268
272
scisave .write_data (file_solution , data_solution )
273
+ LOGGER .info ("save the results : done" )
269
274
except Exception as ex :
270
275
LOGGER .log_exception (ex )
271
276
raise ex
@@ -359,9 +364,10 @@ def run_plotter_file(file_solution, file_plotter, **kwargs):
359
364
# load data
360
365
try :
361
366
# load data
362
- LOGGER .info ("load the input data" )
367
+ LOGGER .info ("load the input data : start " )
363
368
data_solution = scisave .load_data (file_solution )
364
369
data_plotter = scisave .load_config (file_plotter )
370
+ LOGGER .info ("load the input data : done" )
365
371
except Exception as ex :
366
372
LOGGER .log_exception (ex )
367
373
raise ex
0 commit comments