Skip to content

Commit 6df66b2

Browse files
refactor(mesh): update file saving logs to use _display_path for clarity
1 parent 818a966 commit 6df66b2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/FEMTools/mesh.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,11 +256,11 @@ function _do_make_mesh!(workspace::FEMWorkspace)
256256
generate_mesh(workspace)
257257

258258
# Save mesh
259-
@info "Saving mesh to file: $(workspace.paths[:mesh_file])"
259+
@info "Saving mesh to file: $(_display_path(workspace.paths[:mesh_file]))"
260260
gmsh.write(workspace.paths[:mesh_file])
261261

262262
# Save geometry
263-
@info "Saving geometry to file: $(workspace.paths[:geo_file])"
263+
@info "Saving geometry to file: $(_display_path(workspace.paths[:geo_file]))"
264264
gmsh.write(workspace.paths[:geo_file])
265265
end
266266

0 commit comments

Comments
 (0)